mirror of https://github.com/docker/docs.git
Remove extra spaces in the yaml file
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
This commit is contained in:
parent
65066df8f9
commit
5bf7caf5cc
|
@ -289,8 +289,7 @@ Now that we have our `docker-compose.yml` file, we can start it up!
|
|||
Creating app_mysql_1 ... done
|
||||
```
|
||||
|
||||
You'll notice that the volume was created as well as a network! By default, Docker Compose automatically creates a
|
||||
network specifically for the application stack (which is why we didn't define one in the compose file).
|
||||
You'll notice that the volume was created as well as a network! By default, Docker Compose automatically creates a network specifically for the application stack (which is why we didn't define one in the compose file).
|
||||
|
||||
3. Let's look at the logs using the `docker-compose logs -f` command. You'll see the logs from each of the services interleaved
|
||||
into a single stream. This is incredibly useful when you want to watch for timing-related issues. The `-f` flag "follows" the
|
||||
|
|
Loading…
Reference in New Issue