mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 16:42:08 +02:00
426 B
426 B
docker start
Start stopped containers. More information: https://docs.docker.com/reference/cli/docker/container/start/.
- Display help:
docker start
- Start a Docker container:
docker start {{container}}
- Start a container, attaching
stdout
andstderr
and forwarding signals:
docker start {{[-a|--attach]}} {{container}}
- Start one or more containers:
docker start {{container1 container2 ...}}