LinuxCommandLibrary

docker-start

start stopped containers

TLDR

Start a stopped container

$ docker start [container]
copy
Start multiple containers
$ docker start [container1] [container2]
copy
Start with attached output
$ docker start -a [container]
copy
Start interactively
$ docker start -ai [container]
copy

SYNOPSIS

docker start [options] container [container...]

DESCRIPTION

docker start starts one or more stopped containers. Containers retain their configuration from when they were created or last run.

PARAMETERS

-a, --attach

Attach STDOUT/STDERR and forward signals.
-i, --interactive
Attach container's STDIN.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community