A frustrating typo (#5605)

This commit is contained in:
Dan Nissenbaum 2017-12-26 15:39:36 -05:00 committed by Misty Stanley-Jones
parent 32958e7c60
commit 2abb491a2d
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ services:
- db
```
If you run `docker-compose pull ServiceName` in the same directory as the `docker-compose.yml` file that defines the service, Docker will pull the postgres image. For example, to call the `postgres` image configured as the `db` service in our example, you would run `docker-compose pull db`.
If you run `docker-compose pull ServiceName` in the same directory as the `docker-compose.yml` file that defines the service, Docker will pull the associated image. For example, to call the `postgres` image configured as the `db` service in our example, you would run `docker-compose pull db`.
```
$ docker-compose pull db