Solve the problem that Docker must use sudo operations

Solve the problem that Docker must use sudo operations

The steps are as follows

1. 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

Install

Execute 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:
  • Using docker command does not require sudo
  • How to execute Docker commands without sudo
  • How to use docker commands without sudo

<<:  Solution to MySQL replication failure caused by disk fullness

>>:  Mini Program Custom TabBar Component Encapsulation

Recommend

MYSQL subquery and nested query optimization example analysis

Check the top 100 highest scores in game history ...

How to deploy tomcat in batches with ansible

1.1 Building the Directory Structure This operati...

How to allow all hosts to access mysql

1. Change the Host field value of a record in the...

Several reasons for not compressing HTML

The reason is simple: In HTML documents, multiple ...

React tips teach you how to get rid of hooks dependency troubles

A very common scenario in react projects: const [...

Example of using Vue built-in component keep-alive

Table of contents 1. Usage of keep-alive Example ...

How to use Vue to implement CSS transitions and animations

Table of contents 1. The difference between trans...

MySQL calculates the number of days, months, and years between two dates

The MySQL built-in date function TIMESTAMPDIFF ca...

Detailed explanation of how Nginx works

How Nginx works Nginx consists of a core and modu...

How to use fdisk to partition disk in Linux

Commonly used commands for Linux partitions: fdis...

Graphical introduction to the difference between := and = in MySQL

The difference between := and = = Only when setti...

The perfect solution for MySql version problem sql_mode=only_full_group_by

1. Check sql_mode select @@sql_mode The queried v...

Detailed installation and use of virtuoso database under Linux system

I've been researching some things about linke...