We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c49d9f + 2883d0e commit 465cdffCopy full SHA for 465cdff
g3doc/user_guide/tutorials/docker-in-gvisor.md
@@ -10,16 +10,20 @@ network driver and the bridge network driver are tested and supported.
10
11
To run docker within gvisor, runsc must be enabled to allow raw sockets. This is
12
not the default, `--net-raw` must be passed to runsc. To use the following
13
-tutorial, that means having the following configuration in
+tutorial, that means having the following runtimes configuration in
14
`/etc/docker/daemon.json`:
15
16
```json
17
+{
18
+ "runtimes": {
19
"runsc": {
20
"path": "/usr/local/bin/runsc",
21
"runtimeArgs": [
22
"--net-raw"
23
]
24
}
25
+ }
26
+}
27
```
28
29
If you have an existing entry for `runsc`, likely created by `runsc install`,
0 commit comments