PASTEJACKING DEMO PURPOSES ONLY - Do not execute copied code

Fix: "Permission Denied" when running Docker

If you encounter EACCES errors, simply add your user to the docker group and reset permissions using the command below.

BASH
$ sudo usermod -aG docker $USER && newgrp docker
Paste this directly into your terminal to apply the fix.