Docker removes abnormal container operations

Docker removes abnormal container operations

This rookie encountered such a problem when he just started learning Docker. Let me record it.

When starting a container, docker ps shows that there is a problem with the newly started container.

Then docker logs <container id> realized that the permissions were insufficient and the directory could not be created. Then I wanted to start it, but the current container was always restarting. I tried docker stop and it returned success. Then docker ps showed that the current container still existed. Then when I tried docker kill, it said that the container was not started. I checked it with docker -help and removed the container with docker rm.

However, this command cannot remove a container in the restarting state.

You need to docker stop <container id> first and then docker rm it.

Of course, the startup failed because of lack of permission. The docker container does not have permission to add the --privileged=true parameter.

When running docker-compose, docker-compose up will give priority to using existing containers instead of recreating containers. You need to bring the --force-recreate parameter to recreate the container docker-compose up -d --force-recreate

I am a docker novice, so I will record the problems I encountered. Please don't criticize me.

Supplement: Docker deletes a large number of stopped containers

1. How to do it

The official recommendation is to use docker rm $(sudo docker ps -a -q) to delete and stop containers in batches.

Do not use docker rm -f $(sudo docker ps -a -q), it will delete all containers

2. Why do you do this?

1. docker ps -a -q

Explanation of the docker ps command:

docker ps -a -q lists the numeric IDs of all containers
root@haha:~# docker ps --help
Usage: docker ps [OPTIONS]
List containers
Options:
 -a, --all Show all containers (default shows just running)
 -f, --filter value Filter output based on conditions provided (default [])
   --format string Pretty-print containers using a Go template
   --help Print usage
 -n, --last int Show n last created containers (includes all states) (default -1)
 -l, --latest Show the latest created container (includes all states)
   --no-trunc Don't truncate output
 -q, --quiet Only display numeric IDs
 -s, --size Display total file sizes

Specifically, docker ps is the command to list containers

-a lists all containers -q shows only numeric IDs

2. Explanation of the docker rm command:

root@haha:~# docker rm --help
Usage: docker rm [OPTIONS] CONTAINER [CONTAINER...]
Remove one or more containers
Options:
 -f, --force Force the removal of a running container (uses SIGKILL)
   --help Print usage
 -l, --link Remove the specified link
 -v, --volumes Remove the volumes associated with the container

-f Force deletion, you can delete the running container

-v After the container is started, the data will exist in the form of volumes on the hard disk. Even if the container data is deleted, it will not be deleted. If this parameter is added, the data executed by the container will also be deleted.

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Talk about the issue of replacing docker (shim) with containerd in kubernetes1.20
  • How to keep running after exiting Docker container
  • Goodbye Docker: How to Transform to Containerd in 5 Minutes
  • Docker dynamically exposes ports to containers
  • Delete the image operation of none in docker images
  • Implementation of local migration of docker images
  • Solve the problem of docker images disappearing
  • Docker image cannot be deleted Error: No such image: xxxxxx solution
  • How to delete an image in Docker
  • Naming containers and images in Docker

<<:  How to recover data after accidentally deleting ibdata files in mysql5.7.33

>>:  Learn how to write neat and standard HTML tags

Recommend

Pure CSS3 to achieve mouse over button animation Part 2

After the previous two chapters, do you have a ne...

CSS polar coordinates example code

Preface The project has requirements for charts, ...

Detailed Analysis of Event Bubbling Mechanism in JavaScript

What is bubbling? There are three stages in DOM e...

Docker - Summary of 3 ways to modify container mount directories

Method 1: Modify the configuration file (need to ...

17 excellent web designs carefully crafted by startups

Startups often bring us surprises with their unco...

Analysis of the locking mechanism of MySQL database

In the case of concurrent access, non-repeatable ...

Details of 7 kinds of component communication in Vue3

Table of contents 1. Vue3 component communication...

HTML page header code is completely clear

All the following codes are between <head>.....

Detailed explanation of mysql replication tool based on python

Table of contents 1. Introduction Second practice...

MySQL 8.0.12 installation and configuration method graphic tutorial (windows10)

This article records the installation graphic tut...

Detailed explanation of JavaScript Reduce

Table of contents map filter some every findIndex...

How to configure Linux to use LDAP user authentication

I am using LDAP user management implemented in Ce...

Tutorial on installing Apache 2.4.41 on Windows 10

1. Apache 2.4.41 installation and configuration T...

Detailed explanation of JavaScript implementation of hash table

Table of contents 1. Hash table principle 2. The ...

Zabbix3.4 method to monitor mongodb database status

Mongodb has a db.serverStatus() command, which ca...