Skip to content

Instantly share code, notes, and snippets.

@Faldrian
Created July 17, 2020 11:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Faldrian/aaf98ff55ac9ec3ee5ba0bd62c7b5b7f to your computer and use it in GitHub Desktop.
Save Faldrian/aaf98ff55ac9ec3ee5ba0bd62c7b5b7f to your computer and use it in GitHub Desktop.
How to configure docker to work with Wifi-On-ICE
{
"bip": "172.26.0.1/16",
"default-address-pools": [
{"base":"172.27.0.0/16", "size":24}
]
}
@Faldrian
Copy link
Author

This are the required parts of /etc/docker/daemon.json, edit the file and paste it.
After that use "docker-compose down" for all your projects, because docker network ls is showing registered networks, that will still use the 172.18.0.0/16 range. Just deleting the network will confuse existing docker containers, so you have to recreate them (using docker-compose up later).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment