Code: Select all
rc-service docker start
here is the iptables command in question:
Code: Select all
iptables --wait -t nat -A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER
the relevant error (reproduced when trying to run iptables from terminal):
Code: Select all
Warning: Extension addrtype revision 0 not supported, missing kernel module?
iptables: No chain/target/match by that name.
full docker log:
Code: Select all
time="2022-11-25T20:06:46.288769827Z" level=info msg="Starting up"
time="2022-11-25T20:06:46.289691358Z" level=info msg="parsed scheme: \"unix\"" module=grpc
time="2022-11-25T20:06:46.289705771Z" level=info msg="scheme \"unix\" not registered, fallback to default scheme" module=grpc
time="2022-11-25T20:06:46.289720164Z" level=info msg="ccResolverWrapper: sending update to cc: {[{unix:///run/containerd/containerd.sock <nil> 0 <nil>}] <nil> <nil>}" module=grpc
time="2022-11-25T20:06:46.289728333Z" level=info msg="ClientConn switching balancer to \"pick_first\"" module=grpc
time="2022-11-25T20:06:46.290768613Z" level=info msg="parsed scheme: \"unix\"" module=grpc
time="2022-11-25T20:06:46.290781776Z" level=info msg="scheme \"unix\" not registered, fallback to default scheme" module=grpc
time="2022-11-25T20:06:46.290791324Z" level=info msg="ccResolverWrapper: sending update to cc: {[{unix:///run/containerd/containerd.sock <nil> 0 <nil>}] <nil> <nil>}" module=grpc
time="2022-11-25T20:06:46.290798222Z" level=info msg="ClientConn switching balancer to \"pick_first\"" module=grpc
time="2022-11-25T20:06:46.291329704Z" level=error msg="Failed to built-in GetDriver graph btrfs /var/lib/docker"
time="2022-11-25T20:06:46.291767993Z" level=error msg="failed to mount overlay: no such device" storage-driver=overlay2
time="2022-11-25T20:06:46.291833756Z" level=error msg="exec: \"fuse-overlayfs\": executable file not found in $PATH" storage-driver=fuse-overlayfs
time="2022-11-25T20:06:46.291841594Z" level=error msg="Failed to built-in GetDriver graph aufs /var/lib/docker"
time="2022-11-25T20:06:46.291846671Z" level=error msg="Failed to built-in GetDriver graph overlay /var/lib/docker"
time="2022-11-25T20:06:46.291851216Z" level=error msg="Failed to built-in GetDriver graph devicemapper /var/lib/docker"
time="2022-11-25T20:06:46.301745796Z" level=warning msg="Your kernel does not support cgroup blkio weight"
time="2022-11-25T20:06:46.301757356Z" level=warning msg="Your kernel does not support cgroup blkio weight_device"
time="2022-11-25T20:06:46.301839677Z" level=info msg="Loading containers: start."
time="2022-11-25T20:06:46.328349122Z" level=info msg="Default bridge (docker0) is assigned with an IP address 172.17.0.0/16. Daemon option --bip can be used to set a preferred IP address"
time="2022-11-25T20:06:46.336185642Z" level=info msg="stopping event stream following graceful shutdown" error="<nil>" module=libcontainerd namespace=moby
failed to start daemon: Error initializing network controller: Error creating default "bridge" network: Failed to program NAT chain: Failed to inject DOCKER in PREROUTING chain: iptables failed: iptables --wait -t nat -A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER: Warning: Extension addrtype revision 0 not supported, missing kernel module?
iptables: No chain/target/match by that name.
(exit status 1)



