You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 18, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: developer-tools/java/chapters/ch06-swarm.adoc
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Docker Engine includes swarm mode for natively managing a cluster of Docker Engi
9
9
10
10
Swarm is typically a cluster of multiple Docker Engines. But for simplicity we'll run a single node Swarm.
11
11
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.
13
13
14
14
== Initialize Swarm
15
15
@@ -127,7 +127,7 @@ A new overlay network is created. This can be verified using the command `docker
127
127
128
128
== Verify service and containers in application
129
129
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`:
131
131
132
132
```
133
133
ID NAME MODE REPLICAS IMAGE PORTS
@@ -294,7 +294,7 @@ Make sure to wait for the last log statement to show.
294
294
295
295
== Access application
296
296
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).
0 commit comments