summaryrefslogtreecommitdiff
path: root/docs/reference/down.md
diff options
context:
space:
mode:
authorJohn Mulhausen <john@docker.com>2016-10-04 17:56:18 -0700
committerJohn Mulhausen <john@docker.com>2016-10-04 17:58:44 -0700
commit1a4e81920b31a2241fb37c2737f183939ad32058 (patch)
treed2cf383ac34cf02b5ffd2572be04b5569e8ad862 /docs/reference/down.md
parentf65f89ad8c26684a314d9099fe35bcea07dbe5dc (diff)
Remove old documentation source, add README on migration
Signed-off-by: John Mulhausen <john@docker.com>
Diffstat (limited to 'docs/reference/down.md')
-rw-r--r--docs/reference/down.md38
1 files changed, 0 insertions, 38 deletions
diff --git a/docs/reference/down.md b/docs/reference/down.md
deleted file mode 100644
index ffe88b4e..00000000
--- a/docs/reference/down.md
+++ /dev/null
@@ -1,38 +0,0 @@
-<!--[metadata]>
-+++
-title = "down"
-description = "down"
-keywords = ["fig, composition, compose, docker, orchestration, cli, down"]
-[menu.main]
-identifier="down.compose"
-parent = "smn_compose_cli"
-+++
-<![end-metadata]-->
-
-# down
-
-```
-Usage: down [options]
-
-Options:
- --rmi type Remove images. Type must be one of:
- 'all': Remove all images used by any service.
- 'local': Remove only images that don't have a custom tag
- set by the `image` field.
- -v, --volumes Remove named volumes declared in the `volumes` section
- of the Compose file and anonymous volumes
- attached to containers.
- --remove-orphans Remove containers for services not defined in the
- Compose file
-```
-
-Stops containers and removes containers, networks, volumes, and images
-created by `up`.
-
-By default, the only things removed are:
-
-- Containers for services defined in the Compose file
-- Networks defined in the `networks` section of the Compose file
-- The default network, if one is used
-
-Networks and volumes defined as `external` are never removed.