mirror of
https://github.com/docker/cli.git
synced 2025-07-04 02:02:35 +03:00
these markdown files are not consumed directly in the docs, but only their content is included through the YAML does, so there's no need to have these comments in them Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
33 lines
689 B
Markdown
33 lines
689 B
Markdown
---
|
|
title: "stack"
|
|
description: "The stack command description and usage"
|
|
keywords: "stack"
|
|
---
|
|
|
|
# stack
|
|
|
|
```markdown
|
|
Usage: docker stack [OPTIONS] COMMAND
|
|
|
|
Manage Docker stacks
|
|
|
|
Options:
|
|
--help Print usage
|
|
--kubeconfig string Kubernetes config file
|
|
--orchestrator string Orchestrator to use (swarm|kubernetes|all)
|
|
|
|
Commands:
|
|
deploy Deploy a new stack or update an existing stack
|
|
ls List stacks
|
|
ps List the tasks in the stack
|
|
rm Remove one or more stacks
|
|
services List the services in the stack
|
|
|
|
Run 'docker stack COMMAND --help' for more information on a command.
|
|
```
|
|
|
|
## Description
|
|
|
|
Manage stacks.
|
|
|