From b44ef2b306c56dad16500c3738b0f29ec0f34635 Mon Sep 17 00:00:00 2001 From: Mary Anthony Date: Thu, 8 Oct 2015 07:20:06 -0700 Subject: [PATCH] Fixing issues in command ordering. Adding index.md Adjust bullets Entering Seb's comments Signed-off-by: Mary Anthony --- docs/reference/commandline/attach.md | 2 - docs/reference/commandline/build.md | 5 +- docs/reference/commandline/cli.md | 5 +- docs/reference/commandline/commit.md | 2 - docs/reference/commandline/cp.md | 1 - docs/reference/commandline/create.md | 5 +- docs/reference/commandline/daemon.md | 4 +- docs/reference/commandline/diff.md | 1 - docs/reference/commandline/events.md | 3 +- docs/reference/commandline/exec.md | 1 - docs/reference/commandline/export.md | 1 - docs/reference/commandline/history.md | 3 - docs/reference/commandline/images.md | 2 - docs/reference/commandline/import.md | 4 +- docs/reference/commandline/index.md | 85 +++++++++++++++++++ docs/reference/commandline/info.md | 3 - docs/reference/commandline/inspect.md | 2 - docs/reference/commandline/kill.md | 1 - docs/reference/commandline/load.md | 2 - docs/reference/commandline/login.md | 3 - docs/reference/commandline/logout.md | 4 - docs/reference/commandline/logs.md | 1 - docs/reference/commandline/network_connect.md | 3 +- docs/reference/commandline/network_create.md | 1 - docs/reference/commandline/network_inspect.md | 2 +- docs/reference/commandline/pause.md | 2 - docs/reference/commandline/port.md | 1 - docs/reference/commandline/ps.md | 1 - docs/reference/commandline/pull.md | 2 - docs/reference/commandline/push.md | 1 - docs/reference/commandline/rename.md | 1 - docs/reference/commandline/restart.md | 2 - docs/reference/commandline/rm.md | 6 +- docs/reference/commandline/rmi.md | 2 - docs/reference/commandline/run.md | 7 +- docs/reference/commandline/save.md | 1 - docs/reference/commandline/search.md | 2 - docs/reference/commandline/start.md | 2 - docs/reference/commandline/stats.md | 1 - docs/reference/commandline/stop.md | 1 - docs/reference/commandline/tag.md | 1 - docs/reference/commandline/top.md | 1 - docs/reference/commandline/unpause.md | 1 - docs/reference/commandline/version.md | 2 - docs/reference/commandline/volume_create.md | 1 - docs/reference/commandline/wait.md | 1 - 46 files changed, 101 insertions(+), 84 deletions(-) create mode 100644 docs/reference/commandline/index.md diff --git a/docs/reference/commandline/attach.md b/docs/reference/commandline/attach.md index 1afce11a2..04a44cdd6 100644 --- a/docs/reference/commandline/attach.md +++ b/docs/reference/commandline/attach.md @@ -5,7 +5,6 @@ description = "The attach command description and usage" keywords = ["attach, running, container"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -89,4 +88,3 @@ process is returned by the `docker attach` command to its caller too: 13 $ docker ps -a | grep test 275c44472aeb debian:7 "/bin/bash" 26 seconds ago Exited (13) 17 seconds ago test - diff --git a/docs/reference/commandline/build.md b/docs/reference/commandline/build.md index c608c97c5..83b405cd6 100644 --- a/docs/reference/commandline/build.md +++ b/docs/reference/commandline/build.md @@ -5,7 +5,6 @@ description = "The build command description and usage" keywords = ["build, docker, image"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -251,9 +250,9 @@ the command line. When `docker build` is run with the `--cgroup-parent` option the containers used in the build will be run with the [corresponding `docker run` -flag](/reference/run/#specifying-custom-cgroups). +flag](/reference/run/#specifying-custom-cgroups). -Using the `--ulimit` option with `docker build` will cause each build step's +Using the `--ulimit` option with `docker build` will cause each build step's container to be started using those [`--ulimit` flag values](/reference/run/#setting-ulimits-in-a-container). diff --git a/docs/reference/commandline/cli.md b/docs/reference/commandline/cli.md index a07fc8b33..bef1d9e61 100644 --- a/docs/reference/commandline/cli.md +++ b/docs/reference/commandline/cli.md @@ -1,14 +1,15 @@ -# Using the command line +# Use the Docker command line To list available commands, either run `docker` with no parameters or execute `docker help`: diff --git a/docs/reference/commandline/commit.md b/docs/reference/commandline/commit.md index dafdb396b..f2f0ca58b 100644 --- a/docs/reference/commandline/commit.md +++ b/docs/reference/commandline/commit.md @@ -5,7 +5,6 @@ description = "The commit command description and usage" keywords = ["commit, file, changes"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -62,4 +61,3 @@ created. Supported `Dockerfile` instructions: f5283438590d $ docker inspect -f "{{ .Config.Env }}" f5283438590d [HOME=/ PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin DEBUG=true] - diff --git a/docs/reference/commandline/cp.md b/docs/reference/commandline/cp.md index 1fd43dfa0..da27c2037 100644 --- a/docs/reference/commandline/cp.md +++ b/docs/reference/commandline/cp.md @@ -5,7 +5,6 @@ description = "The cp command description and usage" keywords = ["copy, container, files, folders"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/create.md b/docs/reference/commandline/create.md index 1af6bc9d6..c70591995 100644 --- a/docs/reference/commandline/create.md +++ b/docs/reference/commandline/create.md @@ -5,7 +5,6 @@ description = "The create command description and usage" keywords = ["docker, create, container"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -77,7 +76,7 @@ Creates a new container. The `docker create` command creates a writeable container layer over the specified image and prepares it for running the specified command. The container ID is then printed to `STDOUT`. This is similar to `docker run -d` -except the container is never started. You can then use the +except the container is never started. You can then use the `docker start ` command to start the container at any point. This is useful when you want to set up a container configuration ahead of time @@ -121,5 +120,3 @@ then be used from the subsequent container: -rw-r--r-- 1 1000 staff 920 Nov 28 11:51 .profile drwx--S--- 2 1000 staff 460 Dec 5 00:51 .ssh drwxr-xr-x 32 1000 staff 1140 Dec 5 04:01 docker - - diff --git a/docs/reference/commandline/daemon.md b/docs/reference/commandline/daemon.md index d54a983c7..238a9708d 100644 --- a/docs/reference/commandline/daemon.md +++ b/docs/reference/commandline/daemon.md @@ -5,7 +5,7 @@ description = "The daemon command description and usage" keywords = ["container, daemon, runtime"] [menu.main] parent = "smn_cli" -weight=1 +weight = -1 +++ @@ -551,5 +551,3 @@ set like this: # or export DOCKER_TMPDIR=/mnt/disk2/tmp /usr/local/bin/docker daemon -D -g /var/lib/docker -H unix:// > /var/lib/docker-machine/docker.log 2>&1 - - diff --git a/docs/reference/commandline/diff.md b/docs/reference/commandline/diff.md index 64140ccbb..17e870d35 100644 --- a/docs/reference/commandline/diff.md +++ b/docs/reference/commandline/diff.md @@ -5,7 +5,6 @@ description = "The diff command description and usage" keywords = ["list, changed, files, container"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/events.md b/docs/reference/commandline/events.md index 93e09a38c..ab7e8e678 100644 --- a/docs/reference/commandline/events.md +++ b/docs/reference/commandline/events.md @@ -5,7 +5,6 @@ description = "The events command description and usage" keywords = ["events, container, report"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -36,7 +35,7 @@ returns only new and/or live events. ## Filtering The filtering flag (`-f` or `--filter`) format is of "key=value". If you would -like to use multiple filters, pass multiple flags (e.g., +like to use multiple filters, pass multiple flags (e.g., `--filter "foo=bar" --filter "bif=baz"`) Using the same filter multiple times will be handled as a *OR*; for example diff --git a/docs/reference/commandline/exec.md b/docs/reference/commandline/exec.md index 76a491d79..658292679 100644 --- a/docs/reference/commandline/exec.md +++ b/docs/reference/commandline/exec.md @@ -5,7 +5,6 @@ description = "The exec command description and usage" keywords = ["command, container, run, execute"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/export.md b/docs/reference/commandline/export.md index ab7855b95..49eb1ae04 100644 --- a/docs/reference/commandline/export.md +++ b/docs/reference/commandline/export.md @@ -5,7 +5,6 @@ description = "The export command description and usage" keywords = ["export, file, system, container"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/history.md b/docs/reference/commandline/history.md index 2d8aa5ac9..43edf3462 100644 --- a/docs/reference/commandline/history.md +++ b/docs/reference/commandline/history.md @@ -5,7 +5,6 @@ description = "The history command description and usage" keywords = ["docker, image, history"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -39,5 +38,3 @@ To see how the `docker:apache` image was added to a container's base image: 88b42ffd1f7c 5 months ago /bin/sh -c #(nop) ADD file:1fd8d7f9f6557cafc7 373.7 MB c69cab00d6ef 5 months ago /bin/sh -c #(nop) MAINTAINER Lokesh Mandvekar 0 B 511136ea3c5a 19 months ago 0 B Imported from - - - diff --git a/docs/reference/commandline/images.md b/docs/reference/commandline/images.md index 6e979937a..e00840de2 100644 --- a/docs/reference/commandline/images.md +++ b/docs/reference/commandline/images.md @@ -5,7 +5,6 @@ description = "The images command description and usage" keywords = ["list, docker, images"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -178,4 +177,3 @@ In this example, with the `0.1` value, it returns an empty set because no matche $ docker images --filter "label=com.example.version=0.1" REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE - diff --git a/docs/reference/commandline/import.md b/docs/reference/commandline/import.md index b673aaf64..4881f016d 100644 --- a/docs/reference/commandline/import.md +++ b/docs/reference/commandline/import.md @@ -5,7 +5,6 @@ description = "The import command description and usage" keywords = ["import, file, system, container"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -48,7 +47,7 @@ Import to docker via pipe and `STDIN`. $ cat exampleimage.tgz | docker import - exampleimagelocal:new -Import with a commit message +Import with a commit message $ cat exampleimage.tgz | docker import --message "New image imported from tarball" - exampleimagelocal:new @@ -68,4 +67,3 @@ Note the `sudo` in this example – you must preserve the ownership of the files (especially root ownership) during the archiving with tar. If you are not root (or the sudo command) when you tar, then the ownerships might not get preserved. - diff --git a/docs/reference/commandline/index.md b/docs/reference/commandline/index.md new file mode 100644 index 000000000..d9216780f --- /dev/null +++ b/docs/reference/commandline/index.md @@ -0,0 +1,85 @@ + + + +# The Docker commands + +This section contains reference information on using Docker's command line client. Each command has a reference page along with samples. If you are unfamiliar with the command line, you should start by reading about how to ["Use the Docker command line"](cli). + +You start the Docker daemon with the command line. How you start the daemon affects your Docker containers. For that reason you should also make sure to read the [`daemon`](daemon) reference page. + +### Docker management commands + +* [daemon](daemon) +* [info](info) +* [inspect](inspect) +* [version](version) + +### Image commands + +* [build](build) +* [commit](commit) +* [export](export) +* [history](history) +* [images](images) +* [import](import) +* [load](load) +* [rmi](rmi) +* [save](save) +* [tag](tag) + +### Container commands + +* [attach](attach) +* [cp](cp) +* [create](create) +* [diff](diff) +* [events](events) +* [exec](exec) +* [kill](kill) +* [logs](logs) +* [pause](pause) +* [port](port) +* [ps](ps) +* [rename](rename) +* [restart](restart) +* [rm](rm) +* [run](run) +* [start](start) +* [stats](stats) +* [stop](stop) +* [top](top) +* [unpause](unpause) +* [wait](wait) + +### Hub and registry commands + +* [login](login) +* [logout](logout) +* [pull](pull) +* [push](push) +* [search](search) + +### Network and connectivity commands + +* [network_connect](network_connect) +* [network_create](network_create) +* [network_disconnect](network_disconnect) +* [network_inspect](network_inspect) +* [network_ls](network_ls) +* [network_rm](network_rm) + +### Shared data volume commands + +* [volume_create](volume_create) +* [volume_inspect](volume_inspect) +* [volume_ls](volume_ls) +* [volume_rm](volume_rm) diff --git a/docs/reference/commandline/info.md b/docs/reference/commandline/info.md index 0ff60771e..446b68697 100644 --- a/docs/reference/commandline/info.md +++ b/docs/reference/commandline/info.md @@ -5,7 +5,6 @@ description = "The info command description and usage" keywords = ["display, docker, information"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -57,5 +56,3 @@ The global `-D` option tells all `docker` commands to output debug information. When sending issue reports, please use `docker version` and `docker -D info` to ensure we know how your setup is configured. - - diff --git a/docs/reference/commandline/inspect.md b/docs/reference/commandline/inspect.md index e82f969ad..998e198fe 100644 --- a/docs/reference/commandline/inspect.md +++ b/docs/reference/commandline/inspect.md @@ -5,7 +5,6 @@ description = "The inspect command description and usage" keywords = ["inspect, container, json"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -73,4 +72,3 @@ section contains complex JSON object, so to grab it as JSON, you use `json` to convert the configuration object into JSON. $ docker inspect --format='{{json .config}}' $INSTANCE_ID - diff --git a/docs/reference/commandline/kill.md b/docs/reference/commandline/kill.md index d54b9d820..e25c89922 100644 --- a/docs/reference/commandline/kill.md +++ b/docs/reference/commandline/kill.md @@ -5,7 +5,6 @@ description = "The kill command description and usage" keywords = ["container, kill, signal"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/load.md b/docs/reference/commandline/load.md index 858257977..3a183f38e 100644 --- a/docs/reference/commandline/load.md +++ b/docs/reference/commandline/load.md @@ -5,7 +5,6 @@ description = "The load command description and usage" keywords = ["stdin, tarred, repository"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -35,4 +34,3 @@ Restores both images and tags. fedora 20 58394af37342 7 weeks ago 385.5 MB fedora heisenbug 58394af37342 7 weeks ago 385.5 MB fedora latest 58394af37342 7 weeks ago 385.5 MB - diff --git a/docs/reference/commandline/login.md b/docs/reference/commandline/login.md index ff82affa4..6361d99f5 100644 --- a/docs/reference/commandline/login.md +++ b/docs/reference/commandline/login.md @@ -5,7 +5,6 @@ description = "The login command description and usage" keywords = ["registry, login, image"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -26,5 +25,3 @@ adding the server name. example: $ docker login localhost:8080 - - diff --git a/docs/reference/commandline/logout.md b/docs/reference/commandline/logout.md index e936f05fd..36c85453f 100644 --- a/docs/reference/commandline/logout.md +++ b/docs/reference/commandline/logout.md @@ -5,7 +5,6 @@ description = "The logout command description and usage" keywords = ["logout, docker, registry"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -21,6 +20,3 @@ weight=1 For example: $ docker logout localhost:8080 - - - diff --git a/docs/reference/commandline/logs.md b/docs/reference/commandline/logs.md index 678108c02..27d68ead8 100644 --- a/docs/reference/commandline/logs.md +++ b/docs/reference/commandline/logs.md @@ -5,7 +5,6 @@ description = "The logs command description and usage" keywords = ["logs, retrieve, docker"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/network_connect.md b/docs/reference/commandline/network_connect.md index 5b206d8fb..dbde67df0 100644 --- a/docs/reference/commandline/network_connect.md +++ b/docs/reference/commandline/network_connect.md @@ -16,7 +16,7 @@ parent = "smn_cli" --help=false Print usage -Connects a running container to a network. This enables instant communication with other containers belonging to the same network. +Connects a running container to a network. This enables instant communication with other containers belonging to the same network. ``` $ docker network create -d overlay multi-host-network @@ -27,4 +27,3 @@ Connects a running container to a network. This enables instant communication wi the container will be connected to the network that is created and managed by the driver (multi-host overlay driver in the above example) or external network plugins. Multiple containers can be connected to the same network and the containers in the same network will start to communicate with each other. If the driver/plugin supports multi-host connectivity, then the containers connected to the same multi-host network will be able to communicate seamlessly. - diff --git a/docs/reference/commandline/network_create.md b/docs/reference/commandline/network_create.md index ff55f7002..62302b886 100644 --- a/docs/reference/commandline/network_create.md +++ b/docs/reference/commandline/network_create.md @@ -29,4 +29,3 @@ the container will be connected to the network that is created and managed by th Multiple containers can be connected to the same network and the containers in the same network will start to communicate with each other. If the driver/plugin supports multi-host connectivity, then the containers connected to the same multi-host network will be able to communicate seamlessly. *Note*: UX needs enhancement to accept network options to be passed to the drivers - diff --git a/docs/reference/commandline/network_inspect.md b/docs/reference/commandline/network_inspect.md index 8f99f7ec4..4d6604682 100644 --- a/docs/reference/commandline/network_inspect.md +++ b/docs/reference/commandline/network_inspect.md @@ -17,7 +17,7 @@ parent = "smn_cli" --help=false Print usage Returns information about a network. By default, this command renders all results -in a JSON object. +in a JSON object. Example output: diff --git a/docs/reference/commandline/pause.md b/docs/reference/commandline/pause.md index 72174e07d..0e109478d 100644 --- a/docs/reference/commandline/pause.md +++ b/docs/reference/commandline/pause.md @@ -5,7 +5,6 @@ description = "The pause command description and usage" keywords = ["cgroups, container, suspend, SIGSTOP"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -26,4 +25,3 @@ and subsequently resumed. See the [cgroups freezer documentation](https://www.kernel.org/doc/Documentation/cgroups/freezer-subsystem.txt) for further details. - diff --git a/docs/reference/commandline/port.md b/docs/reference/commandline/port.md index a5e850dee..9fd6e8870 100644 --- a/docs/reference/commandline/port.md +++ b/docs/reference/commandline/port.md @@ -5,7 +5,6 @@ description = "The port command description and usage" keywords = ["port, mapping, container"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/ps.md b/docs/reference/commandline/ps.md index 4b83268b2..0d67da9c0 100644 --- a/docs/reference/commandline/ps.md +++ b/docs/reference/commandline/ps.md @@ -5,7 +5,6 @@ description = "The ps command description and usage" keywords = ["container, running, list"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/pull.md b/docs/reference/commandline/pull.md index 3e1ae495f..efcaed612 100644 --- a/docs/reference/commandline/pull.md +++ b/docs/reference/commandline/pull.md @@ -5,7 +5,6 @@ description = "The pull command description and usage" keywords = ["pull, image, hub, docker"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -50,4 +49,3 @@ use `docker pull`: # manually specifies the path to the default Docker registry. This could # be replaced with the path to a local registry to pull from another source. # sudo docker pull myhub.com:8080/test-image - diff --git a/docs/reference/commandline/push.md b/docs/reference/commandline/push.md index 0ac05f851..cdc6ac2da 100644 --- a/docs/reference/commandline/push.md +++ b/docs/reference/commandline/push.md @@ -5,7 +5,6 @@ description = "The push command description and usage" keywords = ["share, push, image"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/rename.md b/docs/reference/commandline/rename.md index b252739b1..667e0d84d 100644 --- a/docs/reference/commandline/rename.md +++ b/docs/reference/commandline/rename.md @@ -5,7 +5,6 @@ description = "The rename command description and usage" keywords = ["rename, docker, container"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/restart.md b/docs/reference/commandline/restart.md index cfce95486..61292d3a5 100644 --- a/docs/reference/commandline/restart.md +++ b/docs/reference/commandline/restart.md @@ -5,7 +5,6 @@ description = "The restart command description and usage" keywords = ["restart, container, Docker"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -17,4 +16,3 @@ weight=1 --help=false Print usage -t, --time=10 Seconds to wait for stop before killing the container - diff --git a/docs/reference/commandline/rm.md b/docs/reference/commandline/rm.md index dc8210728..943343a9a 100644 --- a/docs/reference/commandline/rm.md +++ b/docs/reference/commandline/rm.md @@ -5,7 +5,6 @@ description = "The rm command description and usage" keywords = ["remove, Docker, container"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -42,8 +41,7 @@ The main process inside the container referenced under the link `/redis` will re $ docker rm $(docker ps -a -q) -This command will delete all stopped containers. The command -`docker ps -a -q` will return all existing container IDs and pass them to +This command will delete all stopped containers. The command +`docker ps -a -q` will return all existing container IDs and pass them to the `rm` command which will delete them. Any running containers will not be deleted. - diff --git a/docs/reference/commandline/rmi.md b/docs/reference/commandline/rmi.md index d0475c738..09cffd0d2 100644 --- a/docs/reference/commandline/rmi.md +++ b/docs/reference/commandline/rmi.md @@ -5,7 +5,6 @@ description = "The rmi command description and usage" keywords = ["remove, image, Docker"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -73,4 +72,3 @@ To remove an image using its digest: Deleted: 4986bf8c15363d1c5d15512d5266f8777bfba4974ac56e3270e7760f6f0a8125 Deleted: ea13149945cb6b1e746bf28032f02e9b5a793523481a0a18645fc77ad53c4ea2 Deleted: df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b - diff --git a/docs/reference/commandline/run.md b/docs/reference/commandline/run.md index 471a2bd5c..4bb5ec189 100644 --- a/docs/reference/commandline/run.md +++ b/docs/reference/commandline/run.md @@ -5,7 +5,6 @@ description = "The run command description and usage" keywords = ["run, command, container"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -101,7 +100,7 @@ and linking containers. $ docker ps -a | grep test d6c0fe130dba debian:7 "/bin/bash" 26 seconds ago Exited (13) 17 seconds ago test -This example runs a container named `test` using the `debian:latest` +This example runs a container named `test` using the `debian:latest` image. The `-it` instructs Docker to allocate a pseudo-TTY connected to the container's stdin; creating an interactive `bash` shell in the container. In the example, the `bash` shell is quit by entering @@ -533,8 +532,8 @@ containers with `daemon` user: docker run -d -u daemon --ulimit nproc=3 busybox top docker run -d -u daemon --ulimit nproc=3 busybox top -The 4th container fails and reports "[8] System error: resource temporarily unavailable" error. -This fails because the caller set `nproc=3` resulting in the first three containers using up +The 4th container fails and reports "[8] System error: resource temporarily unavailable" error. +This fails because the caller set `nproc=3` resulting in the first three containers using up the three processes quota set for the `daemon` user. ### Stopping a container with a specific signal diff --git a/docs/reference/commandline/save.md b/docs/reference/commandline/save.md index 06ad5dfa6..d384e8150 100644 --- a/docs/reference/commandline/save.md +++ b/docs/reference/commandline/save.md @@ -5,7 +5,6 @@ description = "The save command description and usage" keywords = ["tarred, repository, backup"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/search.md b/docs/reference/commandline/search.md index ce6f0f33f..07d9ca28c 100644 --- a/docs/reference/commandline/search.md +++ b/docs/reference/commandline/search.md @@ -5,7 +5,6 @@ description = "The search command description and usage" keywords = ["search, hub, images"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -27,4 +26,3 @@ more details on finding shared images from the command line. > **Note:** > Search queries will only return up to 25 results - diff --git a/docs/reference/commandline/start.md b/docs/reference/commandline/start.md index cdbff0842..31365a91f 100644 --- a/docs/reference/commandline/start.md +++ b/docs/reference/commandline/start.md @@ -5,7 +5,6 @@ description = "The start command description and usage" keywords = ["Start, container, stopped"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -18,4 +17,3 @@ weight=1 -a, --attach=false Attach STDOUT/STDERR and forward signals --help=false Print usage -i, --interactive=false Attach container's STDIN - diff --git a/docs/reference/commandline/stats.md b/docs/reference/commandline/stats.md index 3ae7087ff..b2790edf5 100644 --- a/docs/reference/commandline/stats.md +++ b/docs/reference/commandline/stats.md @@ -5,7 +5,6 @@ description = "The stats command description and usage" keywords = ["container, resource, statistics"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/stop.md b/docs/reference/commandline/stop.md index b5a22d6a1..04b498e1d 100644 --- a/docs/reference/commandline/stop.md +++ b/docs/reference/commandline/stop.md @@ -5,7 +5,6 @@ description = "The stop command description and usage" keywords = ["stop, SIGKILL, SIGTERM"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/tag.md b/docs/reference/commandline/tag.md index ab8aacda3..abcc23a3d 100644 --- a/docs/reference/commandline/tag.md +++ b/docs/reference/commandline/tag.md @@ -5,7 +5,6 @@ description = "The tag command description and usage" keywords = ["tag, name, image"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/top.md b/docs/reference/commandline/top.md index eb0e39c1f..3c78f6ae4 100644 --- a/docs/reference/commandline/top.md +++ b/docs/reference/commandline/top.md @@ -5,7 +5,6 @@ description = "The top command description and usage" keywords = ["container, running, processes"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/unpause.md b/docs/reference/commandline/unpause.md index 8a9d41a63..73248d458 100644 --- a/docs/reference/commandline/unpause.md +++ b/docs/reference/commandline/unpause.md @@ -5,7 +5,6 @@ description = "The unpause command description and usage" keywords = ["cgroups, suspend, container"] [menu.main] parent = "smn_cli" -weight=1 +++ diff --git a/docs/reference/commandline/version.md b/docs/reference/commandline/version.md index a173c8dd1..16b947ed2 100644 --- a/docs/reference/commandline/version.md +++ b/docs/reference/commandline/version.md @@ -5,7 +5,6 @@ description = "The version command description and usage" keywords = ["version, architecture, api"] [menu.main] parent = "smn_cli" -weight=1 +++ @@ -54,4 +53,3 @@ describes all the details of the format. $ docker version --format '{{json .}}' {"Client":{"Version":"1.8.0","ApiVersion":"1.20","GitCommit":"f5bae0a","GoVersion":"go1.4.2","Os":"linux","Arch":"amd64","BuildTime":"Tue Jun 23 17:56:00 UTC 2015"},"ServerOK":true,"Server":{"Version":"1.8.0","ApiVersion":"1.20","GitCommit":"f5bae0a","GoVersion":"go1.4.2","Os":"linux","Arch":"amd64","KernelVersion":"3.13.2-gentoo","BuildTime":"Tue Jun 23 17:56:00 UTC 2015"}} - diff --git a/docs/reference/commandline/volume_create.md b/docs/reference/commandline/volume_create.md index be9d4198f..3684bda6d 100644 --- a/docs/reference/commandline/volume_create.md +++ b/docs/reference/commandline/volume_create.md @@ -39,4 +39,3 @@ These options are passed directly to the volume driver. Options for different volume drivers may do different things (or nothing at all). *Note*: The built-in `local` volume driver does not currently accept any options. - diff --git a/docs/reference/commandline/wait.md b/docs/reference/commandline/wait.md index ed1c2a874..cd91c0dde 100644 --- a/docs/reference/commandline/wait.md +++ b/docs/reference/commandline/wait.md @@ -5,7 +5,6 @@ description = "The wait command description and usage" keywords = ["container, stop, wait"] [menu.main] parent = "smn_cli" -weight=1 +++