Difference between revisions of "Docker push"
Jump to navigation
Jump to search
(→Errors) |
|||
Line 59: | Line 59: | ||
* <code>[[docker image push]]</code> | * <code>[[docker image push]]</code> | ||
* <code>[[docker tag]]</code> | * <code>[[docker tag]]</code> | ||
+ | aws ecr get-login-password --region YOUR_REGIOM | docker login --username YOUR_USERNAME --password-stdin YOUR_ACCOUNT_ID.dkr.ecr.YOUR_REGION.amazonaws.com | ||
== See also == | == See also == |
Revision as of 11:55, 24 February 2023
docker push
push an image or a repository to a registry
docker push [OPTIONS] NAME[:TAG]
docker push my_image_name docker push yourepo.company.com/my-image-name:0.1 (use docker tag first)
docker push --quiet your_image docker push --help
Contents
Errors
docker push yourepo.company.com/my-image-name:0.1 The push refers to repository [0987654321.dkr.ecr.eu-west-1.amazonaws.com/yourimage] 6e4707a7ffef: Preparing b284af3bfffe: Preparing denied: Your authorization token has expired. Reauthenticate and try again.
docker push your-image yourepo.company.com/my-image-name:0.1 "docker push" requires exactly 1 argument. See 'docker push --help'. Usage: docker push [OPTIONS] NAME[:TAG] Push an image or a repository to a registry Solution: use docker tag first to tag remote repository
Examples
docker push "your_ecr_repo/elasticsearch:v9.9" The push refers to repository [xxxxxxxx.dkr.ecr.eu-central-1.amazonaws.com/repo/name] 40a381ca46dc: Preparing f9cd3098ca32: Preparing c3e87cd6748e: Preparing 3995c6207484: Preparing 9cbb1bc9540c: Preparing 2dca0f18577a: Waiting e77d17b4c748: Waiting 5fde16b8f2a5: Waiting bb800dda9d0e: Waiting f92203fcb38b: Waiting e9fb19c67236: Waiting 0a367bc63a2a: Waiting denied: Your authorization token has expired. Reauthenticate and try again.
Solution: docker login
Related terms
docker pull
- Binary repository manager
conan upload
docker container commit
docker logs
aws ecs
aws ecr list-images
docker image push
docker tag
aws ecr get-login-password --region YOUR_REGIOM | docker login --username YOUR_USERNAME --password-stdin YOUR_ACCOUNT_ID.dkr.ecr.YOUR_REGION.amazonaws.com
See also
Advertising: