github.com/eikeon/docker@v1.5.0-rc4/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  [**--help**]
    11  [**-i**|**--interactive**[=*false*]]
    12  CONTAINER [CONTAINER...]
    13  
    14  # DESCRIPTION
    15  
    16  Start a stopped container.
    17  
    18  # OPTIONS
    19  **-a**, **--attach**=*true*|*false*
    20     Attach container's STDOUT and STDERR and forward all signals to the process. The default is *false*.
    21  
    22  **--help**
    23    Print usage statement
    24  
    25  **-i**, **--interactive**=*true*|*false*
    26     Attach container's STDIN. The default is *false*.
    27  
    28  # HISTORY
    29  April 2014, Originally compiled by William Henry (whenry at redhat dot com)
    30  based on docker.com source material and internal work.
    31  June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>