github.com/opiuman/docker@v1.6.0/docs/man/docker-start.1.md (about)

     1  % DOCKER(1) Docker User Manuals
     2  % Docker Community
     3  % JUNE 2014
     4  # NAME
     5  docker-start - Start one or more stopped containers
     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 one or more stopped containers.
    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  # See also
    29  **docker-stop(1)** to stop a running container.
    30  
    31  # HISTORY
    32  April 2014, Originally compiled by William Henry (whenry at redhat dot com)
    33  based on docker.com source material and internal work.
    34  June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>