Build, tag, and publish an image (2024)

Table of contents

In this guide, you will learn the following:

  • Building images - the process of building an image based on a Dockerfile
  • Tagging images - the process of giving an image a name, which also determines where the image can be distributed
  • Publishing images - the process to distribute or share the newly created image using a container registry

Building images

Most often, images are built using a Dockerfile. The most basic docker build command might look like the following:

docker build .

The final . in the command provides the path or URL to thebuild context. At this location, the builder will find the Dockerfile and other referenced files.

When you run a build, the builder pulls the base image, if needed, and then runs the instructions specified in the Dockerfile.

With the previous command, the image will have no name, but the output will provide the ID of the image. As an example, the previous command might produce the following output:

$ docker build .[+] Building 3.5s (11/11) FINISHED docker:desktop-linux => [internal] load build definition from Dockerfile 0.0s => => transferring dockerfile: 308B 0.0s => [internal] load metadata for docker.io/library/python:3.12 0.0s => [internal] load .dockerignore 0.0s => => transferring context: 2B 0.0s => [1/6] FROM docker.io/library/python:3.12 0.0s => [internal] load build context 0.0s => => transferring context: 123B 0.0s => [2/6] WORKDIR /usr/local/app 0.0s => [3/6] RUN useradd app 0.1s => [4/6] COPY ./requirements.txt ./requirements.txt 0.0s => [5/6] RUN pip install --no-cache-dir --upgrade -r requirements.txt 3.2s => [6/6] COPY ./app ./app 0.0s => exporting to image 0.1s => => exporting layers 0.1s => => writing image sha256:9924dfd9350407b3df01d1a0e1033b1e543523ce7d5d5e2c83a724480ebe8f00 0.0s

With the previous output, you could start a container by using the referenced image:

docker run sha256:9924dfd9350407b3df01d1a0e1033b1e543523ce7d5d5e2c83a724480ebe8f00

That name certainly isn't memorable, which is where tagging becomes useful.

Tagging images

Tagging images is the method to provide an image with a memorable name. However, there is a structure to the name of an image. A full image name has the following structure:

  • HOST: The optional registry hostname where the image is located. If no host is specified, Docker's public registry at docker.io is used by default.
  • PORT_NUMBER: The registry port number if a hostname is provided
  • PATH: The path of the image, consisting of slash-separated components. For Docker Hub, the format follows [NAMESPACE/]REPOSITORY, where namespace is either a user's or organization's name. If no namespace is specified, library is used, which is the namespace for Docker Official Images.
  • TAG: A custom, human-readable identifier that's typically used to identify different versions or variants of an image. If no tag is specified, latest is used by default.

Some examples of image names include:

  • nginx, equivalent to docker.io/library/nginx:latest: this pulls an image from the docker.io registry, the library namespace, the nginx image repository, and the latest tag.
  • docker/welcome-to-docker, equivalent to docker.io/docker/welcome-to-docker:latest: this pulls an image from the docker.io registry, the docker namespace, the welcome-to-docker image repository, and the latest tag
  • ghcr.io/dockersamples/example-voting-app-vote:pr-311: this pulls an image from the GitHub Container Registry, the dockersamples namespace, the example-voting-app-vote image repository, and the pr-311 tag

To tag an image during a build, add the -t or --tag flag:

docker build -t my-username/my-image .

If you've already built an image, you can add another tag to the image by using thedocker image tag command:

docker image tag my-username/my-image another-username/another-image:v1

Publishing images

Once you have an image built and tagged, you're ready to push it to a registry. To do so, use thedocker push command:

docker push my-username/my-image

Within a few seconds, all of the layers for your image will be pushed to the registry.

Requiring authentication

Before you're able to push an image to a repository, you will need to be authenticated.To do so, simply use thedocker login command.

Try it out

In this hands-on guide, you will build a simple image using a provided Dockerfile and push it to Docker Hub.

Set up

  1. Get the sample application.

    If you have Git, you can clone the repository for the sample application. Otherwise, you can download the sample application. Choose one of the following options.

    Use the following command in a terminal to clone the sample application repository.

    $ git clone https://github.com/docker/getting-started-todo-app

    Download the source and extract it.

  2. Download and install Docker Desktop.

  3. If you don't have a Docker account yet,create one now. Once you've done that, sign in to Docker Desktop using that account.

Build an image

Now that you have a repository on Docker Hub, it's time for you to build an image and push it to the repository.

  1. Using a terminal in the root of the sample app repository, run the following command. Replace YOUR_DOCKER_USERNAME with your Docker Hub username:

    $ docker build -t <YOUR_DOCKER_USERNAME>/concepts-build-image-demo .

    As an example, if your username is mobywhale, you would run the command:

    $ docker build -t mobywhale/concepts-build-image-demo .
  2. Once the build has completed, you can view the image by using the following command:

    $ docker image ls

    The command will produce output similar to the following:

    REPOSITORY TAG IMAGE ID CREATED SIZEmobywhale/concepts-build-image-demo latest 746c7e06537f 24 seconds ago 354MB
  3. You can actually view the history (or how the image was created) by using thedocker image history command:

    $ docker image history mobywhale/concepts-build-image-demo

    You'll then see output similar to the following:

    IMAGE CREATED CREATED BY SIZE COMMENTf279389d5f01 8 seconds ago CMD ["node" "./src/index.js"] 0B buildkit.dockerfile.v0<missing> 8 seconds ago EXPOSE map[3000/tcp:{}] 0B buildkit.dockerfile.v0 <missing> 8 seconds ago WORKDIR /app 8.19kB buildkit.dockerfile.v0<missing> 4 days ago /bin/sh -c #(nop) CMD ["node"] 0B<missing> 4 days ago /bin/sh -c #(nop) ENTRYPOINT ["docker-entry… 0B<missing> 4 days ago /bin/sh -c #(nop) COPY file:4d192565a7220e13… 20.5kB<missing> 4 days ago /bin/sh -c apk add --no-cache --virtual .bui… 7.92MB<missing> 4 days ago /bin/sh -c #(nop) ENV YARN_VERSION=1.22.19 0B<missing> 4 days ago /bin/sh -c addgroup -g 1000 node && addu… 126MB<missing> 4 days ago /bin/sh -c #(nop) ENV NODE_VERSION=20.12.0 0B<missing> 2 months ago /bin/sh -c #(nop) CMD ["/bin/sh"] 0B<missing> 2 months ago /bin/sh -c #(nop) ADD file:d0764a717d1e9d0af… 8.42MB

    This output shows the layers of the image, highlighting the layers you added and those that were inherited from your base image.

Push the image

Now that you have an image built, it's time to push the image to a registry.

  1. Push the image using thedocker push command:

    $ docker push <YOUR_DOCKER_USERNAME>/concepts-build-image-demo

    If you receive a requested access to the resource is denied, make sure you are both logged in and that your Docker username is correct in the image tag.

    After a moment, your image should be pushed to Docker Hub.

To learn more about building, tagging, and publishing images, visit the following resources:

  • What is a build context?
  • docker build reference
  • docker image tag reference
  • docker push reference
  • What is a registry?

Next steps

Now that you have learned about building and publishing images, it's time to learn how to speed up the build process using the Docker build cache.

Using the build cache

Build, tag, and publish an image (2024)
Top Articles
Latest Posts
Article information

Author: Tuan Roob DDS

Last Updated:

Views: 6294

Rating: 4.1 / 5 (62 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Tuan Roob DDS

Birthday: 1999-11-20

Address: Suite 592 642 Pfannerstill Island, South Keila, LA 74970-3076

Phone: +9617721773649

Job: Marketing Producer

Hobby: Skydiving, Flag Football, Knitting, Running, Lego building, Hunting, Juggling

Introduction: My name is Tuan Roob DDS, I am a friendly, good, energetic, faithful, fantastic, gentle, enchanting person who loves writing and wants to share my knowledge and understanding with you.