github.com/stchris/docker@v1.4.2-0.20150106053530-1510a324dbd5/docs/man/docker-start.1.md (about)

     1  % DOCKER(1) Docker User Manuals
     2  % Docker Community
     3  % JUNE 2014
     4  # NAME
     5  docker-start - Restart a stopped container
     6  
     7  # SYNOPSIS
     8  **docker start**
     9  [**-a**|**--attach**[=*false*]]
    10  [**-i**|**--interactive**[=*false*]]
    11  CONTAINER [CONTAINER...]
    12  
    13  # DESCRIPTION
    14  
    15  Start a stopped container.
    16  
    17  # OPTIONS
    18  **-a**, **--attach**=*true*|*false*
    19     Attach container's STDOUT and STDERR and forward all signals to the process. The default is *false*.
    20  
    21  **-i**, **--interactive**=*true*|*false*
    22     Attach container's STDIN. The default is *false*.
    23  
    24  # HISTORY
    25  April 2014, Originally compiled by William Henry (whenry at redhat dot com)
    26  based on docker.com source material and internal work.
    27  June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>