docker-start - Man Page
Start one or more stopped containers
Examples (TL;DR)
- 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)
Synopsis
docker start [Options] CONTAINER [CONTAINER...]
Description
Alias for docker container start
.
Options
- -a, --attach[=false]
Attach STDOUT/STDERR and forward signals
- --checkpoint=""
Restore from this checkpoint
- --checkpoint-dir=""
Use a custom checkpoint storage directory
- --detach-keys=""
Override the key sequence for detaching a container
- -h, --help[=false]
help for start
- -i, --interactive[=false]
Attach container's STDIN
See Also
Info
May 2020 Docker Community