Post Details

Docker on Ubuntu but really it's Windows

Tutorials

Docker on Ubuntu but really it's Windows

If you are running Windows Subsystem for Linux and trying to use docker desktop, you may find yourself getting permission denied messages. Just like with regular ubuntu and docker, you have to use sudo, or add yourself to the docker group. Here's how to do that.

    $ sudo groupadd docker
    $ sudo usermod -aG docker $USER
    $ group
    # You should see docker listed. If not run the following command
    $ newgrp docker