2015-06-08 13:48:20 -04:00
% DOCKER(1) Docker User Manuals
% Docker Community
% JUNE 2014
# NAME
2015-10-03 11:56:41 -04:00
docker-start - Start one or more containers
2015-06-08 13:48:20 -04:00
# SYNOPSIS
**docker start**
2015-12-23 09:37:06 -05:00
[**-a**|**--attach**]
2016-01-03 17:03:39 -05:00
[**--detach-keys**[=*[]*]]
2015-06-08 13:48:20 -04:00
[**--help**]
2015-12-23 09:37:06 -05:00
[**-i**|**--interactive**]
2015-06-08 13:48:20 -04:00
CONTAINER [CONTAINER...]
# DESCRIPTION
2015-10-03 11:56:41 -04:00
Start one or more containers.
2015-06-08 13:48:20 -04:00
# OPTIONS
**-a**, ** --attach**=*true*|*false*
2016-01-03 17:03:39 -05:00
Attach container's STDOUT and STDERR and forward all signals to the
process. The default is *false* .
**--detach-keys**=""
Override the key sequence for detaching a container. Format is a single character `[a-Z]` or `ctrl-<value>` where `<value>` is one of: `a-z` , `@` , `^` , `[` , `,` or `_` .
2015-06-08 13:48:20 -04:00
**--help**
Print usage statement
**-i**, ** --interactive**=*true*|*false*
Attach container's STDIN. The default is *false* .
# See also
2015-10-03 11:56:41 -04:00
**docker-stop(1)** to stop a container.
2015-06-08 13:48:20 -04:00
# HISTORY
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
based on docker.com source material and internal work.
June 2014, updated by Sven Dowideit < SvenDowideit @ home . org . au >