> For the complete documentation index, see [llms.txt](https://notes.tatusl.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.tatusl.dev/containers/examples.md).

# Examples

## Docker

Bypass network, pid, and IPC namespaces. Mount host filesystem to `/host` and chroot to `host` in container.

```
docker run -ti 
    --privileged 
    --net=host --pid=host --ipc=host 
    --volume /:/host 
    busybox 
    chroot /host
```

## Resources

* The Most Pointless Docker Command Ever - <https://zwischenzugs.com/2015/06/24/the-most-pointless-docker-command-ever/>
