This sample demonstrates how to push .NET images to the Docker Hub container registry. The instructions are based on the .NET Docker Sample.
Similar instructions are also available to push to Azure Container Registry.
The following instructions are a subset of the .NET Docker Sample instructions, which assume that you are starting from the root of the dotnet-docker repo.
cd samples
cd dotnetapp
docker build --pull -t dotnetapp .
You can test the image with the following instructions.
docker run --rm dotnetapp
Now tag the image to push to Docker Hub, with your Docker Hub user name. You can also build the image with the right name initially.
docker tag dotnetapp richlander/dotnetapp
You need to login to Docker Hub with docker login
or with the Docker Client UI to push images.
There are a couple ways of passing a password to docker login
. These instructions pass the password to stdin via a text file called password-dh.txt. Make sure to save to a location not managed by source control (to avoid accidental disclosure).
Note
The instructions use example values that need to be changed to for your environment, specifically the password location, and the user account. More simply, make sure to change "rich" and "richlander" to something else.
Login on Windows:
type c:\users\rich\password-dh.txt | docker login -u richlander --password-stdin
Login on macOS or Linux:
cat ~/password-dh.txt | docker login -u richlander --password-stdin
Alternatively, pass your password to docker login
as plain text via the --password
argument.
Now push the image to Docker Hub.
docker push richlander/dotnetapp
You can now pull the image from another device. You need to docker login
if you are using a private Docker Hub repo using the same login instructions used previously.
Update the path locations, registry, and user names to the ones you are using.
Now pull and run the image:
docker pull richlander/dotnetapp
docker run --rm richlander/dotnetapp