Start one or more stopped Docker containers.
# To show help:
docker start
# To start a docker container:
docker start <container>
# To start a container, attaching 'stdout' and 'stderr' and forwarding signals:
docker start --attach <container>
# To start one or more space-separated containers:
docker start <container(s)>