LinuxCommandLibrary

docker-start

Start one or more stopped containers.

TLDR

Show help

$ docker start
copy


Start a docker container
$ docker start [container]
copy


Start a container, attaching stdout and stderr and forwarding signals
$ docker start --attach [container]
copy


Start one or more space-separated containers
$ docker start [container1 container2 ...]
copy

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

docker(1)

Copied to clipboard