Say you have a `docker-compose.yml` like: ``` one: image: python two: build: . ``` And a `Dockerfile` like: ``` FROM ruby ... ``` I'd expect `docker-compose pull` to pull both `python` and `ruby` images. Only `python` is currently pulled.
Say you have a
docker-compose.ymllike:And a
Dockerfilelike:I'd expect
docker-compose pullto pull bothpythonandrubyimages. Onlypythonis currently pulled.