summaryrefslogtreecommitdiff
path: root/docs/reference/commandline/push.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/reference/commandline/push.md')
-rw-r--r--docs/reference/commandline/push.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/reference/commandline/push.md b/docs/reference/commandline/push.md
index e36fd026d1..d33804d6c4 100644
--- a/docs/reference/commandline/push.md
+++ b/docs/reference/commandline/push.md
@@ -25,6 +25,8 @@ Options:
--help Print usage
```
+## Description
+
Use `docker push` to share your images to the [Docker Hub](https://hub.docker.com)
registry or to a self-hosted one.
@@ -36,7 +38,7 @@ running in a terminal, terminates the push operation.
Registry credentials are managed by [docker login](login.md).
-## Concurrent uploads
+### Concurrent uploads
By default the Docker daemon will push five layers of an image at a time.
If you are on a low bandwidth connection this may cause timeout issues and you may want to lower
@@ -45,7 +47,7 @@ this via the `--max-concurrent-uploads` daemon option. See the
## Examples
-### Pushing a new image to a registry
+### Push a new image to a registry
First save the new image by finding the container ID (using [`docker ps`](ps.md))
and then committing it to a new image name. Note that only `a-z0-9-_.` are
@@ -62,6 +64,7 @@ registry:
```bash
$ docker tag rhel-httpd registry-host:5000/myadmin/rhel-httpd
+
$ docker push registry-host:5000/myadmin/rhel-httpd
```