Merge pull request #9 from codecrafters-io/sync

Sync with languages repo
This commit is contained in:
Sarup Banskota
2022-02-09 17:28:41 -05:00
committed by GitHub

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