'I need to install "docker pull bitnami/python:3.8.12-debian-10-r156" but I keep getting "permission denied" [duplicate]
Solution 1:[1]
You can try to run docker command with sudo:
sudo docker pull bitnami/python:3.8.12-debian-10-r156If you wanna make docker not requiring sudo, so you can run docker commands without sudo you have to run the following commands:
sudo usermod -aG docker $USERnewgrp docker
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | ouflak |
