From 2abb491a2d1b8c8bdc8c6bd81656a8e9ab049bcb Mon Sep 17 00:00:00 2001 From: Dan Nissenbaum Date: Tue, 26 Dec 2017 15:39:36 -0500 Subject: [PATCH] A frustrating typo (#5605) --- compose/reference/pull.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/reference/pull.md b/compose/reference/pull.md index 73c1655207..72fc4d76fb 100644 --- a/compose/reference/pull.md +++ b/compose/reference/pull.md @@ -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