The steps are as follows1. Create a docker group: sudo groupadd docker 2. Add the current user to the docker group: sudo gpasswd -a ${USER} docker 3. Restart the service: sudo service docker restart 4. Refresh docker members: newgrp - docker [Note]: This has been tested on Ubuntu, not on other Linux systems. Supplement: Docker installation under Linux, and configuration to execute Docker without sudo command InstallExecute the following command wget -qO- https://get.docker.com/ | sh Execute docker without sudo command Why do we need to create a docker user group?The Docker daemon binds to a unix socket, not a TCP port. The default owner of this socket is root, and other users can use the sudo command to access this socket file. For this reason, the Docker service process runs as the root account. To avoid having to enter sudo every time you run a docker command, you can create a docker user group and add the corresponding users to this group. When the docker process starts, the socket is set to be readable and writable by users of the docker group. In this way, any user in the docker group can directly execute docker commands. Warning: This dockergroup is equivalent to the root account. For more details, please refer to this article: Docker Daemon AttackSurface . 1 Log in to the system using an account with sudo privileges. 2 Create a docker group and add the corresponding users to this group. sudo usermod -aG docker your_username 3 Log out and then log in again for the permissions to take effect. 4 Confirm that you can run docker commands directly. $ docker run hello-world 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:
|
<<: Solution to MySQL replication failure caused by disk fullness
>>: Mini Program Custom TabBar Component Encapsulation
Check the top 100 highest scores in game history ...
1.1 Building the Directory Structure This operati...
1. Change the Host field value of a record in the...
The reason is simple: In HTML documents, multiple ...
A very common scenario in react projects: const [...
Table of contents 1. Usage of keep-alive Example ...
Table of contents 1. The difference between trans...
The MySQL built-in date function TIMESTAMPDIFF ca...
Use CSS to prevent Lightbox to realize the displa...
How Nginx works Nginx consists of a core and modu...
Commonly used commands for Linux partitions: fdis...
1.0 Redis persistence Redis is an in-memory datab...
The difference between := and = = Only when setti...
1. Check sql_mode select @@sql_mode The queried v...
I've been researching some things about linke...