Merge pull request #5008 from TaviotBaptiste/patch-2

Add depends_on to dockerfile example
pull/5392/head
dsh 5 months ago committed by GitHub
commit aec54a4565
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      src/data/roadmaps/docker/content/108-running-containers/101-docker-compose.md

@ -21,13 +21,15 @@ services:
image: nginx:latest
ports:
- "80:80"
depends_on:
- db
db:
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: mysecretpassword
```
In this example, we have specified two services: a web server (`web`) running the latest version of the nginx image, and a database server (`db`) running MySQL. The web server exposes its port 80 to the host machine, and the database server has an environment variable set for the root password.
In this example, we have specified two services: a web server (`web`) running the latest version of the nginx image, and a database server (`db`) running MySQL. The web server exposes its port 80 to the host machine and depends on the launch of the database (`db`). The database server has an environment variable set for the root password.
## Running Docker Compose:

Loading…
Cancel
Save