Using docker command does not require sudo

Using docker command does not require sudo

Because the docker daemon needs to bind to the host's Unix socket instead of a normal TCP port, and the owner of the Unix socket is the root user, other users can perform related operations only by adding the sudo option before the command.

If you don’t want to type sudo every time you use the docker command, you can configure it as follows.

1. Create a docker group

$ sudo groupadd docker

2. Add the current user to the docker group

$ sudo usermod -aG docker $USER

3. Log out and log back into the shell

4. Verify that the docker command can run

$ docker run hello-world

Additional knowledge: Docker image acceleration

After installing Docker, the next step is to have fun, but the actual situation is not pleasant

Because the default image source of Docker is abroad, due to the special network reasons in China, it is often slow to access or completely inaccessible. Fortunately, there are similar image sources available in China. I use the image source provided by daocloud, and the experience is pretty good.

Conveniently, they provide a script to modify the mirror source with one click. The specific commands are as follows:

curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://01393398.m.daocloud.io

After executing the above command, the default image source of docker points to the image warehouse of daocloud. At this time, you need to restart the docker service to take effect.

sudo systemctl restart docker.service

Try to pull an image

$ docker pull busybox

If the image is downloaded successfully, it means that the above changes have taken effect.

Reference official website

The above operation of using docker command without typing sudo is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to execute Docker commands without sudo
  • How to use docker commands without sudo
  • Solve the problem that Docker must use sudo operations

<<:  Steps to install MySQL using Docker under Linux

>>:  JavaScript to implement drop-down list selection box

Recommend

Why the table file size remains unchanged after deleting data in MySQL

For databases that have been running for a long t...

MYSQL's 10 classic optimization cases and scenarios

Table of contents 1. General steps for SQL optimi...

How to install MySQL 5.7.28 binary mode under CentOS 7.4

Linux system version: CentOS7.4 MySQL version: 5....

MySQL DML statement summary

DML operations refer to operations on table recor...

Detailed explanation of Nginx static file service configuration and optimization

Root directory and index file The root directive ...

Unity connects to MySQL and reads table data implementation code

The table is as follows: Code when Unity reads an...

Solution to 1045 error when navicat connects to mysql

When connecting to the local database, navicat fo...

Vue implements anchor positioning function

This article example shares the specific code of ...

Steps to change mysql character set to UTF8 under Linux system

Table of contents 1. Check the MySQL status in th...

Commonplace talk about MySQL event scheduler (must read)

Overview MySQL also has its own event scheduler, ...

Upgrade MySQL 5.1 to 5.5.36 in CentOS

This article records the process of upgrading MyS...