docker-start: add page (#4338)

beep
Axel Navarro 2020-09-15 07:37:28 -03:00 committed by GitHub
parent a72d6c7c73
commit dcb5d4c547
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# docker start
> Start one or more stopped containers.
> More information: <https://docs.docker.com/engine/reference/commandline/start/>.
- Show help:
`docker start`
- Start a docker container:
`docker start {{container}}`
- Start a container, attaching `stdout` and `stderr` and forwarding signals:
`docker start --attach {{container}}`
- Start one or more space-separated containers:
`docker start {{container(s)}}`