Syncing with codecrafters-io/languages

Created by https://github.com/codecrafters-io/languages
This commit is contained in:
Paul Kuruvilla 2022-02-09 22:22:07 +00:00
parent 34bb05db95
commit 82d863ca30

View File

@ -37,6 +37,9 @@ Next, add a [shell alias](https://shapeshed.com/unix-alias/):
alias mydocker='docker build -t mydocker . && docker run --cap-add="SYS_ADMIN" mydocker'
```
(The `--cap-add="SYS_ADMIN"` flag is required to create
[PID Namespaces](https://man7.org/linux/man-pages/man7/pid_namespaces.7.html))
You can now execute your program like this:
```sh