Compare commits

...

1 Commits
v2.05 ... v2.06

Author SHA1 Message Date
Kroese
59b98fe211 fix: Disable kernel networking in bridge mode (#257) 2024-03-12 00:46:51 +01:00
2 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
FROM scratch FROM scratch
COPY --from=qemux/qemu-docker:4.16 / / COPY --from=qemux/qemu-docker:4.17 / /
ARG DEBCONF_NOWARNINGS "yes" ARG DEBCONF_NOWARNINGS "yes"
ARG DEBIAN_FRONTEND "noninteractive" ARG DEBIAN_FRONTEND "noninteractive"

View File

@@ -227,6 +227,8 @@ docker run -it --rm --name windows -p 8006:8006 --device=/dev/kvm --cap-add NET_
```yaml ```yaml
environment: environment:
DHCP: "Y" DHCP: "Y"
devices:
- /dev/vhost-net
device_cgroup_rules: device_cgroup_rules:
- 'c *:* rwm' - 'c *:* rwm'
``` ```