mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-29 04:21:48 +08:00
14 lines
317 B
Bash
14 lines
317 B
Bash
#!/bin/sh
|
|
|
|
uci -q set dockerd.globals.iptables=0
|
|
|
|
uci -q delete firewall.docker.network
|
|
|
|
DOCKER0_DEVICE=`uci show network | grep -E "^network\\.@device\\[\\d+\\]\\.name='docker0'" | head -n1 | head -c -16`
|
|
|
|
if [ -n "$DOCKER0_DEVICE" ]; then
|
|
uci delete "$DOCKER0_DEVICE"
|
|
fi
|
|
uci -q delete network.docker
|
|
uci commit
|