Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 342 Bytes

how-to-push-an-image-to-a-private-repository.md

File metadata and controls

15 lines (9 loc) · 342 Bytes

How to Push an Image to a Private Repository

Prerequisites

Lets assume the image is called myApp and the remote repository is called blade1.se.internal:5000

Process

Tag a local repository for remote publishing

docker tag MyApp blade1.se.internal:5000/MyApp

Push the image to remote

docker push blade1.se.internal:5000/MyApp