How to publish a locally built docker image to dockerhub

How to publish a locally built docker image to dockerhub

Today we will introduce how to publish the local docker project image to dockerhub. Without further ado, let's get straight to the point:

(1) Register a Dockerhub account;

(2) After the account is registered, we create a warehouse to store the image

(3) At this point, we can see the successful creation of the interface repository path: nbidashboard/nbiplatform


(4) View local container information

sudo docker ps 


(5) Submit container:

sudo docker commit CONTAINER ID nbidashboard/nbiplatform

sudo docker push nbidashboard/nbiplatform:latest 


(6) After the upload is complete, we use the command to verify whether the submitted information is successful:

sudo docker inspect nbidashboard/nbiplatform:latest 


(7) At this point, our entire operation has been completed, and we can already see the image we provided in Dockerhub:


This is the end of this article on how to publish locally built docker images to dockerhub. For more information about publishing docker images to dockerhub, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to publish Docker images to Docker Hub
  • How to configure docker in IDEA2021.2 to image the springboot project and release it with one click
  • Docker-compose image release process analysis of springboot project
  • Detailed steps for building, running, publishing, and obtaining a Docker image for the first time
  • How to use Docker to publish local images to Alibaba Cloud

<<:  javascript to switch pictures by clicking a button

>>:  mysql 8.0.19 winx64.zip installation tutorial

Recommend

How to use gdb to debug core files in Linux

1.core file When a Segmentation fault (core dumpe...

Core skills that web front-end development engineers need to master

The content involved in Web front-end development...

Mobile web screen adaptation (rem)

Preface I recently sorted out my previous notes o...

Detailed explanation of the principles of Vue's responsive system

Table of contents The basic principles of Vue'...

Detailed process of Vue front-end packaging

Table of contents 1. Add packaging command 2. Run...

How to use Webstorm and Chrome to debug Vue projects

Table of contents Preface 1. Create a new Vue pro...

An article teaches you how to implement a recipe system with React

Table of contents 1. Recipe Collection 1.1 Projec...

Detailed explanation of putting common nginx commands into shell scripts

1. Create a folder to store nginx shell scripts /...

12 Useful Array Tricks in JavaScript

Table of contents Array deduplication 1. from() s...

Code comment writing standards during web page production

<br />I have summarized the annotation writi...

Weird and interesting Docker commands you may not know

Intro Introduces and collects some simple and pra...

Linux ssh server configuration code example

Use the following terminal command to install the...