Based on the answer from alexanderlukanin13. It's worked for me for the docker-compose file's version: "3.8".I added a usage pre-existing network from the documentation.
- Turn off the OpenVPN connection.
- Create a custom docker network:
sudo docker network create your-network --subnet 172.24.24.0/24
- At the bottom of the docker-compose file:
version: "3.8"services:...volumes:...networks: default: name: your-network external: true
- Turn on the OpenVPN connection
After that: sudo docker compose -f docker-compose.yml up -d --build
works without the error:
failed to create network your-network-name_default: Error response from daemon: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network