Basic Docker Image Operations

2024-11-06 03:00:36

Installing Docker

Please refer to https://docs.docker.com/get-docker/ and choose the installation method according to your operating system.

Common Commands

docker login

Log into the image repository:

docker login the <image repository address>

Login with the specified username and password:

docker login –username=<username> --password=<password> <image repository address>

docker tag

Modify Image Name:

docker tag <source image>:<image edition> <target image>:<image edition>

or

docker tag <source image ID> <target image>:<image edition>

docker push

Pushing the image:

docker push image:<image edition>

docker pull

Pulling the image:

docker pull image:<image edition>


90f5FBC2p_bo