'I need to install "docker pull bitnami/python:3.8.12-debian-10-r156" but I keep getting "permission denied" [duplicate]

the problem that pops

how can I install it? got to get this exact version...



Solution 1:[1]

  1. You can try to run docker command with sudo:

    sudo docker pull bitnami/python:3.8.12-debian-10-r156

  2. If 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 $USER
    newgrp 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