search
HomeOperation and MaintenanceDockerWhat are the built-in commands of docker?

Docker’s built-in commands: 1. run; 2. kill; 3. rm; 4. create; 5. exec; 6. ps; 7. inspect; 8. top; 9. attach; 10. events ;11. logs; 12. wait; 13. export; 14. rmi, etc.

What are the built-in commands of docker?

The operating environment of this tutorial: linux7.3 system, docker-1.13.1 version, Dell G3 computer.

What are the built-in commands of docker

With the help of Docker, we can quickly deliver, test and deploy code, which can greatly reduce the time of deploying code. The characteristic of docker is that there are many commands, which is inconvenient for beginners to use.

The following is a summary of commonly used commands.

1. Mirror related commands

docker search 镜像名

Search for mirror

docker pull 仓库名

Download mirror

docker pull [选项] [Docker Registry地址]<仓库名>:<标签>

# The option can be done through docker pull – help View

# Docker Registry address: [:Port number], the default address is Docker Hub

# Warehouse name: The warehouse name is a two-part name, both < ;User name>/. For Docker Hub, if the user name is not given, the default is library, which is the official image

#Example:

[root@node1 docker]# docker pull mysql:5.7.19
docker images

List existing local images

docker build [选项] <上下文路径>

Build a new image based on the given Dockerfile file

Note: The name of the Dockerfile file can be named by yourself. If the file name is not "Dockerfile", the file name needs to be written in the build command

# Example

In the /home/docker/java/ruiyi01 directory, run the command: (The following dot indicates searching for the Dockfile file in the current directory)

docker build -t ruoyi-demo .
docker rmi <镜像id>

Delete the image

docker push 镜像名

Share the local image to the docker remote warehouse (this is for the default Docker Hub)

Note: Directly executing push will report an error. Use the docker tag command to rename the image to be shared (add an identifier)

For example, docker tag getting-started YOUR-USER-NAME/getting-started

Then execute push

docker push YOUR-USER-NAME/getting-started

2. Container-related commands

docker run [选项] 镜像名

Creating a new container and running it

# is equivalent to performing two steps: putting the image into the container (docker create), and then start the container to turn it into a runtime container (docker start)

# Example:

docker run -d --name ruoyi-demo-run -p 8083:8084 ruoyi-demo

(Based on the image ruoyi-demo, create a name in the background Run the ruoyi-demo-run container. The port numbers of the host and container are 8083 and 8084 respectively)

docker run -d --name vue-demo-run -p 8088:80 vue-demo

# -d Run in the background

# --name Name the container

# -p host port: container internal port

docker ps

View currently running container information

docker ps -a

View all containers

docker rm <容器id>

Delete a container .

Note: If it is running, it cannot be deleted directly. You need to stop running it first.

If you want to forcefully delete a running container, add the "force" flag to the command: for example

docker rm -f
docker rm $(docker ps -qa)

Delete all stopped containers

dockers exec -it <容器id/容器名>

Enter the container (new Terminal)

docker attach <容器id/容器名>

Enter the container

docker start 容器id

Run a container

docker stop 容器id

Stop a running container.

docker restart 容器id

Restart a running container

docker logs <容器id>

Get the running log of the container

docker commit

# Similar to the git commit operation

docker commit -m= "Submission description message" -a="Author" Container id Target image name: [Version message]

# Function: Submit the container we have operated into a new image through commit. We can use this modified image directly in the future.

Recommended learning: "docker video tutorial"

The above is the detailed content of What are the built-in commands of docker?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Linux and Docker: Docker on Different Linux DistributionsLinux and Docker: Docker on Different Linux DistributionsApr 19, 2025 am 12:10 AM

The methods of installing and using Docker on Ubuntu, CentOS, and Debian are different. 1) Ubuntu: Use the apt package manager, the command is sudoapt-getupdate&&sudoapt-getinstalldocker.io. 2) CentOS: Use the yum package manager and you need to add the Docker repository. The command is sudoyumininstall-yyum-utils&&sudoyum-config-manager--add-repohttps://download.docker.com/lin

Mastering Docker: A Guide for Linux UsersMastering Docker: A Guide for Linux UsersApr 18, 2025 am 12:08 AM

Using Docker on Linux can improve development efficiency and simplify application deployment. 1) Pull Ubuntu image: dockerpullubuntu. 2) Run Ubuntu container: dockerrun-itubuntu/bin/bash. 3) Create Dockerfile containing nginx: FROMubuntu;RUNapt-getupdate&&apt-getinstall-ynginx;EXPOSE80. 4) Build the image: dockerbuild-tmy-nginx. 5) Run container: dockerrun-d-p8080:80

Docker on Linux: Applications and Use CasesDocker on Linux: Applications and Use CasesApr 17, 2025 am 12:10 AM

Docker simplifies application deployment and management on Linux. 1) Docker is a containerized platform that packages applications and their dependencies into lightweight and portable containers. 2) On Linux, Docker uses cgroups and namespaces to implement container isolation and resource management. 3) Basic usages include pulling images and running containers. Advanced usages such as DockerCompose can define multi-container applications. 4) Debug commonly used dockerlogs and dockerexec commands. 5) Performance optimization can reduce the image size through multi-stage construction, and keeping the Dockerfile simple is the best practice.

Docker: Containerizing Applications for Portability and ScalabilityDocker: Containerizing Applications for Portability and ScalabilityApr 16, 2025 am 12:09 AM

Docker is a Linux container technology-based tool used to package, distribute and run applications to improve application portability and scalability. 1) Dockerbuild and dockerrun commands can be used to build and run Docker containers. 2) DockerCompose is used to define and run multi-container Docker applications to simplify microservice management. 3) Using multi-stage construction can optimize the image size and improve the application startup speed. 4) Viewing container logs is an effective way to debug container problems.

How to start containers by dockerHow to start containers by dockerApr 15, 2025 pm 12:27 PM

Docker container startup steps: Pull the container image: Run "docker pull [mirror name]". Create a container: Use "docker create [options] [mirror name] [commands and parameters]". Start the container: Execute "docker start [Container name or ID]". Check container status: Verify that the container is running with "docker ps".

How to view logs from dockerHow to view logs from dockerApr 15, 2025 pm 12:24 PM

The methods to view Docker logs include: using the docker logs command, for example: docker logs CONTAINER_NAME Use the docker exec command to run /bin/sh and view the log file, for example: docker exec -it CONTAINER_NAME /bin/sh ; cat /var/log/CONTAINER_NAME.log Use the docker-compose logs command of Docker Compose, for example: docker-compose -f docker-com

How to check the name of the docker containerHow to check the name of the docker containerApr 15, 2025 pm 12:21 PM

You can query the Docker container name by following the steps: List all containers (docker ps). Filter the container list (using the grep command). Gets the container name (located in the "NAMES" column).

How to create containers for dockerHow to create containers for dockerApr 15, 2025 pm 12:18 PM

Create a container in Docker: 1. Pull the image: docker pull [mirror name] 2. Create a container: docker run [Options] [mirror name] [Command] 3. Start the container: docker start [Container name]

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool