> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/docker/run-docker-without-root.md).

# Run Docker without Root

To run Docker as non-root user, we can add our user to "docker" group, to do run this -

```bash
sudo usermod -aG docker ${USER}
```

**Reference(s)**

* <https://docs.docker.com/engine/install/linux-postinstall/>
