tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Docker > How to start a stopped Container

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.

01C:\>docker start --help
02 
03Usage:  docker start [OPTIONS] CONTAINER [CONTAINER...]
04 
05Start one or more stopped containers
06 
07Options:
08  -a, --attach               Attach STDOUT/STDERR and forward signals
09      --detach-keys string   Override the key sequence for detaching a
10                             container
11  -i, --interactive          Attach container's STDIN
12 
13 
14C:\>docker start -ia 8734e9e8b551
15C:\>docker start -ia happy_kalam
16root@8734e9e8b551:/# ls
17bin  boot  dev  etc  home  lib  lib32  lib64  libx32  media  mnt  opt  proc  root  run  sbin  srv  sys  tmp  usr  var
18root@8734e9e8b551:/#

 
  


  
bl  br