mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 19:59:24 +08:00
434 B
434 B
docker start
Start stopped containers. More information: https://docs.docker.com/reference/cli/docker/container/start/.
- Start a Docker container:
docker start {{container}}
- Start a container, attaching
stdoutandstderr, and forwarding signals:
docker start {{[-a|--attach]}} {{container}}
- Start one or more containers:
docker start {{container1 container2 ...}}
- Display help:
docker start --help