github.com/itscaro/cli@v0.0.0-20190705081621-c9db0fe93829/docs/reference/commandline/stack.md (about) 1 --- 2 title: "stack" 3 description: "The stack command description and usage" 4 keywords: "stack" 5 --- 6 7 <!-- This file is maintained within the docker/cli GitHub 8 repository at https://github.com/docker/cli/. Make all 9 pull requests against that repo. If you see this file in 10 another repository, consider it read-only there, as it will 11 periodically be overwritten by the definitive file. Pull 12 requests which include edits to this file in other repositories 13 will be rejected. 14 --> 15 16 # stack 17 18 ```markdown 19 Usage: docker stack [OPTIONS] COMMAND 20 21 Manage Docker stacks 22 23 Options: 24 --help Print usage 25 --kubeconfig string Kubernetes config file 26 --orchestrator string Orchestrator to use (swarm|kubernetes|all) 27 28 Commands: 29 deploy Deploy a new stack or update an existing stack 30 ls List stacks 31 ps List the tasks in the stack 32 rm Remove one or more stacks 33 services List the services in the stack 34 35 Run 'docker stack COMMAND --help' for more information on a command. 36 ``` 37 38 ## Description 39 40 Manage stacks. 41