2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "restart"
|
|
|
|
description: "The restart command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
keywords: "restart, container, Docker"
|
2016-10-14 18:30:36 -04:00
|
|
|
---
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
|
|
# restart
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
|
|
|
Usage: docker restart [OPTIONS] CONTAINER [CONTAINER...]
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2016-08-30 11:07:42 -04:00
|
|
|
Restart one or more containers
|
2015-06-21 16:41:38 -04:00
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
Options:
|
|
|
|
--help Print usage
|
|
|
|
-t, --time int Seconds to wait for stop before killing the container (default 10)
|
|
|
|
```
|
2017-02-07 18:42:48 -05:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2021-08-21 08:54:14 -04:00
|
|
|
```console
|
2017-02-07 18:42:48 -05:00
|
|
|
$ docker restart my_container
|
|
|
|
```
|