docker-start
start stopped containers
TLDR
Start a stopped container
$ docker start [container]
Start multiple containers$ docker start [container1] [container2]
Start with attached output$ docker start -a [container]
Start interactively$ docker start -ai [container]
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.
