2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "start"
|
|
|
|
description: "The start command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
keywords: "Start, container, stopped"
|
2016-10-14 18:30:36 -04:00
|
|
|
---
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
|
|
# start
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
|
|
|
Usage: docker start [OPTIONS] CONTAINER [CONTAINER...]
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Start one or more stopped containers
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Options:
|
|
|
|
-a, --attach Attach STDOUT/STDERR and forward signals
|
|
|
|
--detach-keys string Override the key sequence for detaching a container
|
|
|
|
--help Print usage
|
|
|
|
-i, --interactive Attach container's STDIN
|
|
|
|
```
|
2017-02-07 18:42:48 -05:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker start my_container
|
|
|
|
```
|