Last active
July 13, 2023 14:25
-
-
Save derjohn/0f283897e3863a2b0ad93aaf63fee4ce to your computer and use it in GitHub Desktop.
Docker Config with IP address range that does not collide with the Wifi of Deutsche Bahn DB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/etc/docker/daemon.json | |
{ | |
"bip" : "172.70.0.1/16", | |
"fixed-cidr" : "172.70.16.0/20", | |
"log-level" : "info", | |
"default-address-pools" : [ | |
{"base" : "172.80.0.0/16", "size" : 24 }, | |
{"base" : "172.90.0.0/16", "size" : 24 } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment