|
How to start a stopped Container
Author: Venkata Sudhakar
Docker is an open platform to develop, ship, and run containerized applications.
It separates infra from application to ease application development and support anywhere development strategy. The below example shows how to start a stopped Container by using container name or container id.
01 | C:\>docker start --help |
03 | Usage: docker start [OPTIONS] CONTAINER [CONTAINER...] |
05 | Start one or more stopped containers |
08 | -a, --attach Attach STDOUT/STDERR and forward signals |
09 | --detach-keys string Override the key sequence for detaching a |
11 | -i, --interactive Attach container's STDIN |
14 | C:\>docker start -ia 8734e9e8b551 |
15 | C:\>docker start -ia happy_kalam |
16 | root @8734e9e8b551 :/# ls |
17 | bin boot dev etc home lib lib32 lib64 libx32 media mnt opt proc root run sbin srv sys tmp usr var |
|
|