How to Fix Docker Permission Denied?

October 27, 2022

Introduction

Docker outputs the "Permission Denied" error when a non-root user without sufficient privileges attempts to execute a Docker command. This situation can occur after a new Docker installation, an update, or after administrative changes to users and groups on the system.

This article will present six methods to fix the "Permission Denied" error in Docker. The methods include restarting the Docker service, changing user and file permissions, and running containers in privileged mode.

How to Fix Docker Permission Denied.

Prerequisites

What is Docker Permission Denied Error

The "Permission Denied" error appears when a system cannot communicate with the Docker daemon because the user lacks privileges. The example below shows the error when the user attempts to list Docker images.

A screenshot of the Permission Denied error upon the execution of the docker images command.

The following sections contain possible fixes listed in the order from safest to the methods recommended for experts only.

Method 1: Restart Docker Engine

In some cases, restarting Docker may be sufficient to stop the error from appearing. Restart the Docker service by running the command below:

sudo service docker restart

The command prints no output. To check if the service restarted properly, type:

service docker status

The Active field confirms the Docker service is running.

The status output for the Docker service showing that the service is active and running.

Issue a docker command to test if the error persists. The example below shows the successful execution of the docker images command.

Using the docker images command without sudo to check if the Permission Denied command persists.

Method 2: Run Docker Commands with sudo

The "Permission Denied" error appears only with non-root users. Running the command with sudo to acquire root privileges usually resolves the issue.

The following example creates and runs a hello-world container using the docker run command preceded by sudo:

sudo docker run hello-world
Executing the docker run command with sudo.

Method 3: Enable Non-Root User Access

While the previous method stops the error from appearing, it requires sudo every time you issue a Docker command. The following section explains how to enable non-root access for a user and grant sufficient privileges to run Docker commands without sudo.

1. Enter the command below to create the docker group on the system.

sudo groupadd -f docker

2. Type the following usermod command to add the active user to the docker group.

sudo usermod -aG docker $USER

3. Apply the group changes to the current terminal session by typing:

newgrp docker

4. Check if the docker group is in the list of user groups.

groups

The group appears in the command output.

Checking the groups the user is a member of. The docker group is in the list.

You should now be able to issue Docker commands as a non-root user without sudo.

Note: If the error persists after completing all the steps of this method, try restarting your system.

Method 4: Review File Permissions

If adding a user to the docker group does not resolve the issue, it may be necessary to adjust the permissions of specific files and directories.

Follow the steps below to make the necessary changes.

1. Use the chown command to change the ownership of docker.sock, the UNIX socket that Docker daemon (dockerd) listens to.

sudo chown root:docker /var/run/docker.sock

2. Type the following command to ensure that you own the hidden .docker directory located in your home directory. The -R option applies the command recursively to all the subdirectories.

sudo chown -R "$USER":"$USER" $HOME/.docker

3. Assign group read and write permissions with the chmod command.

sudo chmod -R g+rw "$HOME/.docker"

Note: The .docker directory is created only after the user successfully authenticates on Docker Hub with the docker login command. If you receive the "No such file or directory" error when executing the commands related to .docker, ignore the message.

The system is now set up with correct permissions, and the "Permission Denied" error should stop appearing.

Method 5: Edit Docker Service File

The docker.service file contains parameters necessary for the proper functioning of the Docker daemon. Editing this file may sometimes resolve the "Permission Denied" issue.

1. Open the file in a text editor. The example uses Nano.

sudo nano /usr/lib/systemd/system/docker.service

2. Append the following lines to the bottom of the Service section:

SupplementaryGroups=docker    
ExecStartPost=/bin/chmod 666 /var/run/docker.sock
Editing the docker.service file in Nano.

Save the file and exit.

3. Restart Docker Engine by referring to Method 1 of this tutorial.

Method 6: Run Docker in Privileged Mode

Warning: The following section describes a procedure that is not recommended in the production environment. To find out more, read Should You Run Privileged Docker Containers?

The privileged mode in Docker provides containers with root privileges for all devices on the host system. Running a privileged container should eliminate the "Permission Denied" error.

To check if your container already runs in privileged mode:

1. List all the containers on your system:

sudo docker ps -a

2. Find the container you want to inspect and copy its ID.

Output of the docker ps -a command showing the available containers on the system. The first column of the output shows the container ID.

3. Execute the following command with the relevant container ID.

sudo docker inspect --format='{{.HostConfig.Privileged}}' [container-id]

If the output is true, the container runs in privileged mode. The false output indicates an unprivileged container.

Output of the docker inspect command showing that the container is not running in the privileged mode.

Add the --privileged flag to the docker run command to create a privileged container.

sudo docker run -d --privileged nginx

If successful, the output shows the ID of the new container.

Creating a privileged container in Docker.

Conclusion

This article provided multiple methods to fix the Docker "Permission Denied" error. It included simple solutions, such as restarting Docker, and more complex ones, like editing user permissions.

To catch and troubleshoot more complex errors, learn how to use Docker's built-in logging tools. For more information, refer to Docker Container Logs: Commands & Best Practices.

Was this article helpful?
YesNo
Marko Aleksic
Marko Aleksić is a Technical Writer at phoenixNAP. His innate curiosity regarding all things IT, combined with over a decade long background in writing, teaching and working in IT-related fields, led him to technical writing, where he has an opportunity to employ his skills and make technology less daunting to everyone.
Next you should read
How to Update Docker Image and Container to the Latest Version
August 13, 2020

It is recommended to run containers from the latest Docker image unless you have a specific reason...
Read more
How to Set Docker Memory and CPU Usage Limit
December 6, 2023

If you don’t limit Docker’s memory and CPU usage, Docker can use all the systems resources. In this tutorial, learn...
Read more
Podman vs Docker: Everything You Need to Know
December 12, 2023

This article will compare two container management engines - Docker and Podman. It will also help you...
Read more
Docker Image vs Container: The Major Differences
October 31, 2019

Although Docker is relatively simple to master, there are some software-specific terms that new users may find confusing...
Read more