@hakkai94 said in Interesting find.......DNS options:
Hello,
I have the same error. Perhaps the problem is that I use my Synology as DNS Server ? Did you solve this problem ?
Thanks
I solved this problem by forcing DNS servers in my docker-compose.yml file :
version: '2'
services:
monocle-gateway:
container_name: monocle-gateway
hostname: monocle-gateway
image: monoclecam/monocle-gateway
restart: always
volumes:
- /volume1/monocle:/etc/monocle
dns:
- 1.1.1.1
- 1.0.0.1
networks:
monocle-gateway-network:
ipv4_address: 192.168.1.114
networks:
monocle-gateway-network:
driver: macvlan
driver_opts:
parent: ovs_eth0
ipam:
config:
- subnet: 192.168.1.0/24
gateway: 192.168.1.1