mirror of https://github.com/docker/docs.git
correct docker stack deploy option
This commit is contained in:
parent
9d40556f63
commit
6f9a504ef0
|
@ -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).
|
||||
|
|
|
@ -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).
|
||||
|
|
Loading…
Reference in New Issue