mirror of
https://github.com/docker/cli.git
synced 2025-08-27 13:42:00 +03:00
This replaces the use of bash where suitable, to allow easier copy/pasting of shell examples without copying the prompt or process output. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
27 lines
384 B
Markdown
27 lines
384 B
Markdown
---
|
|
title: "rename"
|
|
description: "The rename command description and usage"
|
|
keywords: "rename, docker, container"
|
|
---
|
|
|
|
# rename
|
|
|
|
```markdown
|
|
Usage: docker rename CONTAINER NEW_NAME
|
|
|
|
Rename a container
|
|
|
|
Options:
|
|
--help Print usage
|
|
```
|
|
|
|
## Description
|
|
|
|
The `docker rename` command renames a container.
|
|
|
|
## Examples
|
|
|
|
```console
|
|
$ docker rename my_container my_new_container
|
|
```
|