mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 16:35:28 +02:00
docker-start: add page (#4338)
This commit is contained in:
parent
a72d6c7c73
commit
dcb5d4c547
1 changed files with 20 additions and 0 deletions
20
pages/common/docker-start.md
Normal file
20
pages/common/docker-start.md
Normal 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)}}`
|
Loading…
Add table
Reference in a new issue