We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fec38d8 + b559c44 commit dacf2afCopy full SHA for dacf2af
docs/how-to/compose-quickstart.md
@@ -41,3 +41,13 @@ export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/podman/podman.sock
41
- Install podman desktop <https://podman-desktop.io/docs/installation>
42
- Follow [](linux-installation) above in a WSL2 or Mac terminal
43
- For Mac, add an X11 server like XQuartz
44
+
45
+## Docker permissions
46
47
+If you get docker permission errors do the following:
48
49
+```bash
50
+sudo groupadd docker
51
+sudo usermod -aG docker $USER
52
+sudo reboot
53
+```
0 commit comments