correct docker stack deploy option

This commit is contained in:
Jakob Karstens 2019-02-26 21:06:18 -08:00
parent 9d40556f63
commit 6f9a504ef0
2 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ To deploy complex multi-container apps, you can use the `docker stack deploy` co
For example:
```bash
docker stack deploy -f docker-compose.yml myapp
docker stack deploy -c docker-compose.yml myapp
```
A good sample app to test deployment of stacks is the [Docker voting app](https://github.com/docker/example-voting-app).

View File

@ -154,7 +154,7 @@ To deploy complex multi-container apps, you can use the `docker stack deploy` co
For example:
```bash
docker stack deploy -f docker-compose.yml myapp
docker stack deploy -c docker-compose.yml myapp
```
A good sample app to test deployment of stacks is the [Docker voting app](https://github.com/docker/example-voting-app).