Update "docker-compose up" doc to explain logging (#4672)

After running "docker-compose up", the console shows a nice aggregated output of each container. When running this in detached mode, it's not clear how to later view this aggregated output again. Added a quick note on how this is done.
This commit is contained in:
locofocos 2017-10-16 18:09:52 -05:00 committed by Misty Stanley-Jones
parent fdec9e0436
commit 955d8b37f4
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ Builds, (re)creates, starts, and attaches to containers for a service.
Unless they are already running, this command also starts any linked services.
The `docker-compose up` command aggregates the output of each container. When
The `docker-compose up` command aggregates the output of each container (essentially running `docker-compose logs -f`). When
the command exits, all containers are stopped. Running `docker-compose up -d`
starts the containers in the background and leaves them running.