Deploying an ASP.NET Core image to Docker Hub
November 06, 2018 by Anuraj
ASPNET Core Docker
This post is about building an ASP.NET docker image and deploying to docker hub. Docker Hub is a cloud-based registry service which allows you to link to code repositories, build your images and test them, stores manually pushed images, and links to Docker Cloud so you can deploy images to your hosts. It provides a centralized resource for container image discovery, distribution and change management, user and team collaboration, and workflow automation throughout the development pipeline.
First you need to create an account in docker hub, in the Free account, you can create only one private image. Once you create an account, you can create an ASP.NET Core app and add docker file to build image. For this post I have created an ASP.NET MVC app, and added a docker file like this.
You can build the image using docker build command like this - docker build --rm -f "Dockerfile" -t hellowebapplinux:latest .
Once the build is completed you will be able to see the image, by running the docker images
command.
To publish to docker hub, you need to tag your image with your docker hub username - my docker hub username is anuraj, here is the command to tag the image. - docker tag 8ad130b70635 anuraj/hellowebapplinux:latest
- In this command you need to use the docker image Id after the tag command argument, then instead of anuraj, you need to use your own docker hub username. Now if you run the docker images
command, you will be able to see a new image.
You’re ready to publish the image to docker hub. For that you need to login to docker hub using docker login
command. It will prompt you for your docker hub credentials. The credentials will be stored locally until you logout using docker logout
command.
Once you completed the login successfully, you can using docker push anuraj/hellowebapplinux
command to publish the image to docker hub. Here is the output of docker push command.
Once it is completed, you can login to your docker hub and you will be able to see the image.
Docker Hub also helps you to automate the image deployment - In the docker hub, select Create Automated Build option from Create menu, there you can configure source control. Currently GitHub and Bitbucket is supported. In this example I am connecting my github account. Once connected, you can choose the repository you want to build. Select you repository.
Next you need to provide the name and description of your image. You can customize the tagging options as well in this screen.
For this I triggered the build manually. You can trigger it from Build settings tab, which will build the image using Dockerfile.
You need to configure GitHub webhooks to start the build if you commit something on the repo and you need to build the docker image. To configure GitHub webhooks, go to settings of your GitHub repository, select Settings, and choose WebHooks. And provide following details. Official Documentation
Then if you commit something to your GitHub repo, it will trigger a docker build.
In this way you can build and publish your ASP.NET Core docker images to docker hub. You can configure you github webhooks and trigger docker build automated. If you’re using Azure Container Service aka AKS, you can follow the same steps to publish an image to AKS, along with docker login command, you need to provide the AKS URL.
Happy Programming :)
Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub