mirror of https://github.com/containers/podman.git
Podman image: Set default_sysctls to empty for rootless containers
Avoids the error "Error: error preparing container xyz... for attach: crun: open /proc/sys/net/ipv4/ping_group_range: Read-only file system: OCI runtime error" when using `podman run --net bridge` inside rootful Podman running without --security-opt unmask=ALL (or 'unmask=/proc/*') Signed-off-by: Joakim Nohlgård <joakim@nohlgard.se>
This commit is contained in:
parent
2fb7218e63
commit
02bb7c2cf3
|
@ -2,3 +2,4 @@
|
||||||
volumes = [
|
volumes = [
|
||||||
"/proc:/proc",
|
"/proc:/proc",
|
||||||
]
|
]
|
||||||
|
default_sysctls = []
|
||||||
|
|
Loading…
Reference in New Issue