This commit is contained in:
Sébastien Bro 2017-10-16 17:00:15 +02:00 коммит произвёл GitHub
Родитель 367771b64c
Коммит 359b0e2915
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -9,7 +9,7 @@ Docker Engine includes swarm mode for natively managing a cluster of Docker Engi
Swarm is typically a cluster of multiple Docker Engines. But for simplicity we'll run a single node Swarm.
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.
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.
== Initialize Swarm
@ -127,7 +127,7 @@ A new overlay network is created. This can be verified using the command `docker
== Verify service and containers in application
Verify that the WildFly and Mysql services are running using `docker service ls`:
Verify that the WildFly and MySQL services are running using `docker service ls`:
```
ID NAME MODE REPLICAS IMAGE PORTS
@ -294,7 +294,7 @@ Make sure to wait for the last log statement to show.
== Access application
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).
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).
The endpoint can be accessed in this case as: