I would like to change (or remove) the address 172.17.0.1 used by docker networks, can you do that?
I use docker for php development and I have a remote repository (git) configured through a VPN using the IP range 172.17.X.X.
Whenever my containers are up, the docker network uses this IP range and I am unable to make any requests to the remote repository.
Thank you.
NOTE: I use a Linux environment (Mint 19)
I was able to solve my problem by defining a subnet in the network used by my containers in the docker-compose.yml file. This way:
networks: frontend: driver: bridge ipam: config: - subnet: 172.18.0.0/16 backend: driver: bridge ipam: config: - subnet: 172.19.0.0/16