mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 00:41:42 +00:00
26 lines
508 B
Plaintext
26 lines
508 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# docker start
|
|
|
|
> Start stopped containers.
|
|
> More information: <https://docs.docker.com/engine/reference/commandline/start/>.
|
|
|
|
- Display 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 containers:
|
|
|
|
`docker start {{container1 container2 ...}}`
|