Restart the Docker service to apply the automatic start and stop command (recommended)

Restart the Docker service to apply the automatic start and stop command (recommended)

Let's take a look at the command to restart the Docker service application. The specific contents are as follows:

#Restart the docker service application and do not automatically start the docker container docker update --restart=no (docker container CONTAINER ID or docekr container NAMES)

#Restart the docker service application and automatically start the docker container docker update --restart=always (docker container CONTAINER ID or docekr container NAMES)

ps: Start the Docker command after the server restarts

Startup steps:

1. Start the Docker daemon

systemctl daemon-reload

2. Docker startup command:

systemctl start docker

3. Check whether the docker service is started

ps -ef |grep docker

4. View the services started by docker:

docker ps

other:

Restart the Docker service

systemctl restart docker

Stop the Docker service

systemctl stop docker

Summarize

The above is the command for restarting the docker service application to start and stop automatically. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I will reply to you in time!

You may also be interested in:
  • Detailed explanation of how to enter and exit the Docker container
  • How to create, start, and stop a Docker container
  • How to keep running after exiting Docker container

<<:  Summary of practical skills commonly used in Vue projects

>>:  Briefly explain the use of group by in sql statements

Recommend

Summary of the execution issues between mysql max and where

Execution problem between mysql max and where Exe...

Detailed tutorial on integrating Apache Tomcat with IDEA editor

1. Download the tomcat compressed package from th...

Chrome plugin (extension) development guide (complete demo)

Table of contents Written in front Preface What i...

Example code for implementing a pure CSS pop-up menu using transform

Preface When making a top menu, you will be requi...

Web Design Tutorial (3): Design Steps and Thinking

<br />Previous tutorial: Web Design Tutorial...

How to set up Referer in Nginx to prevent image theft

If the server's images are hotlinked by other...

Docker configuration Alibaba Cloud image acceleration pull implementation

Today I used docker to pull the image, but the sp...

What scenarios are not suitable for JS arrow functions?

Table of contents Overview Defining methods on an...

Implementation code of short video (douyin) watermark removal tool

Table of contents 1. Get the first link first 2. ...

How to disable the automatic password saving prompt function of Chrome browser

Note: In web development, after adding autocomplet...

Implementation of MySQL5.7 mysqldump backup and recovery

MySQL backup Cold backup:停止服務進行備份,即停止數據庫的寫入Hot ba...

Explore JavaScript prototype data sharing and method sharing implementation

Data Sharing What kind of data needs to be writte...