OpenViduPro docker bridge ip

Hello,
We have an IP conflict problem: docker uses IPs like 172.18.x.x and 172.20.x.x.
Unfortunately, this is the type of IP we use in our local network.
Is it possible to change the IP generated by docker?

Regards

Ummm but this is not an OpenVidu Issue, is more or less related with Docker. You will need to check Docker forums or documentation regarding this. Probably there’s a way to configure the address space used by Docker in the configuration files of Docker daemon.

For anyone which conflict with docker bridges, just add this into /opt/openvidu/docker-compose.yml:

networks:
  default:
    ipam:
      driver: default
      config:
        - subnet: 10.0.0.0/24   <---- PUT THE ADDRESS SPACE YOU WANT