Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 359b0e2

Browse files
authored
Fix typo MySQL and add link
1 parent 367771b commit 359b0e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

developer-tools/java/chapters/ch06-swarm.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Docker Engine includes swarm mode for natively managing a cluster of Docker Engi
99

1010
Swarm is typically a cluster of multiple Docker Engines. But for simplicity we'll run a single node Swarm.
1111

12-
This section will deploy an application that will provide a CRUD/REST interface on a data bucket in Mysql. This is achieved by using a Java EE application deployed on http://wildfly.org[WildFly] to access the database.
12+
This section will deploy an application that will provide a CRUD/REST interface on a data bucket in https://www.mysql.com/[MySQL]. This is achieved by using a Java EE application deployed on http://wildfly.org[WildFly] to access the database.
1313

1414
== Initialize Swarm
1515

@@ -127,7 +127,7 @@ A new overlay network is created. This can be verified using the command `docker
127127

128128
== Verify service and containers in application
129129

130-
Verify that the WildFly and Mysql services are running using `docker service ls`:
130+
Verify that the WildFly and MySQL services are running using `docker service ls`:
131131

132132
```
133133
ID NAME MODE REPLICAS IMAGE PORTS
@@ -294,7 +294,7 @@ Make sure to wait for the last log statement to show.
294294

295295
== Access application
296296

297-
Now that the WildFly and Mysql servers have been configured, let's access the application. You need to specify IP address of the host where WildFly is running (`localhost` in our case).
297+
Now that the WildFly and MySQL servers have been configured, let's access the application. You need to specify IP address of the host where WildFly is running (`localhost` in our case).
298298

299299
The endpoint can be accessed in this case as:
300300

0 commit comments

Comments
 (0)