Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion g3doc/user_guide/tutorials/docker-in-gvisor.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,20 @@ network driver and the bridge network driver are tested and supported.

To run docker within gvisor, runsc must be enabled to allow raw sockets. This is
not the default, `--net-raw` must be passed to runsc. To use the following
tutorial, that means having the following configuration in
tutorial, that means having the following runtimes configuration in
`/etc/docker/daemon.json`:

```json
{
"runtimes": {
"runsc": {
"path": "/usr/local/bin/runsc",
"runtimeArgs": [
"--net-raw"
]
}
}
}
```

If you have an existing entry for `runsc`, likely created by `runsc install`,
Expand Down