Docker container operation instructions summary and detailed explanation

Docker container operation instructions summary and detailed explanation

1. Create and run a container

docker run -it --rm centos:latest bash

run the container

-it runs the container interactively

--rm delete the container after exiting the container

centos:latest starts a container based on an image

bash command interactive shell

2. Exit the container

exit

3. View the container

docker ps to view the running containers

docker ps -a view all containers

4. Delete the container

docker rm [容器id ]

5. Check the space occupied by the image container data volume

docker system df

6. Enter the container

docker exec -it [容器id] bash enters the container interactively (opens a new console operation)

7. Start, stop and restart the container

dcoker start [容器id/容器名]

dcoker stop [容器id/容器名]

dcoker restart [容器id/容器名]

8. Delete the container

docker container rm

Clean up all terminated containers

docker container prune

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Docker common commands summary (practical version)
  • Summary of common docker commands (recommended)
  • Summary of Docker's common commands and usage precautions
  • Summary and analysis of commonly used Docker commands and examples

<<:  A brief discussion on React native APP updates

>>:  MySQL configuration SSL master-slave replication

Recommend

Steps to install MySQL 5.7.10 on Windows server 2008 r2

Install using the MSI installation package Downlo...

SQL merge operation of query results of tables with different columns

To query two different tables, you need to merge ...

Vue routing lazy loading details

Table of contents 1. What is lazy loading of rout...

Forty-nine JavaScript tips and tricks

Table of contents 1. Operation of js integer 2. R...

Discussion on horizontal and vertical centering of elements in HTML

When we design a page, we often need to center th...

202 Free High Quality XHTML Templates (1)

Here 123WORDPRESS.COM presents the first part of ...

XHTML Getting Started Tutorial: What is XHTML?

What is HTML? To put it simply: HTML is used to m...

Detailed tutorial on deploying Hadoop cluster using Docker

Recently, I want to build a hadoop test cluster i...

Why the disk space is not released after deleting data in MySQL

Table of contents Problem Description Solution Pr...

Use Smart CSS to apply styles based on the user's scroll position

By adding the current scroll offset to the attrib...

Example code for implementing equal height layout in multiple ways with CSS

The equal height layout described in this article...

Solution to transparent font problem after turning on ClearType in IE

The solution to the transparent font problem after...

Elementui exports data to xlsx and excel tables

Recently, I learned about the Vue project and cam...

Implementation of Nginx domain name forwarding

Introduction to Nginx Nginx ("engine x"...

Detailed explanation of non-parent-child component communication in Vue3

Table of contents First method App.vue Home.vue H...