How to solve the problem of insufficient permissions when switching users in docker container

How to solve the problem of insufficient permissions when switching users in docker container

When switching users in the docker container, it prompts that the permissions are insufficient:

Solution:

The container is started with privileges:

docker run -i -t --privileged -v /home/dora:/home/dora centos_ora /bin/bash

Additional knowledge: Docker runs with normal permissions under Linux

When installing Docker in Linux, it will be installed by default with the permission of the user named docker. It is inconvenient to switch users when using it.

In order to use the command directly, you need to add the current user to the docker group

sudo usermod -aG docker your_username

Restart to take effect!

The above article on how to solve the problem of insufficient permissions when switching users in a docker container is all I have to share with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Directory permissions when creating a container with Docker
  • How to enable minimum privileges when using iptables in a Docker container
  • Solution to the Docker container not having permission to write to the host directory

<<:  Detailed explanation of the use of MySQL concatenation function CONCAT

>>:  Detailed explanation of how two Node.js processes communicate

Recommend

How to use Docker to build a pypi private repository

1. Construction 1. Prepare htpasswd.txt file The ...

JavaScript canvas to achieve code rain effect

This article shares the specific code for canvas ...

What does href=# mean in a link?

Links to the current page. ------------------- Com...

mysql startup failure problem and scenario analysis

1. One-stop solution 1. Problem analysis and loca...

A brief discussion on the role of HTML empty links

Empty link: That is, there is no link with a targ...

Common symbols in Unicode

Unicode is a character encoding scheme developed ...

uniapp Sample code for implementing global sharing of WeChat mini-programs

Table of contents Create a global shared content ...

8 examples of using killall command to terminate processes in Linux

The Linux command line provides many commands to ...

A case study on MySQL optimization

1. Background A sql-killer process is set up on e...

Introduction to MyCat, the database middleware

1. Mycat application scenarios Mycat has been dev...

Using vue3 to imitate the side message prompt effect of Apple system

Table of contents Animation Preview Other UI Libr...

Beginners learn some HTML tags (3)

Related articles: Beginners learn some HTML tags ...

Sample code for implementing music player with native JS

This article mainly introduces the sample code of...