clnhlzmn
Members
-
Joined
-
Last visited
Solutions
-
clnhlzmn's post in How to make /etc/docker/daemon.json "default-address-pools" persistent across reboots was marked as the answerIn case you never figured this out, and for the benefit of other people searching for this: you have to put this in /boot/config/go as in add the following (or equivalent) to that file:
mkdir /etc/docker cat << EOF > /etc/docker/daemon.json { "default-address-pools": [ { "base": "172.23.0.0/16", "size": 24 } ] } EOFThat will cause the daemon.json file to be created with the given content on every boot.