FWG: Cloudflare DDNS configured, missed something..

Comments

3 comments

  • Avatar
    Lynk

    missed the DNS config in the .yaml file. Tested and working great now. 

    0
    Comment actions Permalink
  • Avatar
    Firewalla

    Which DNS?

    0
    Comment actions Permalink
  • Avatar
    Lynk

    As soon as i put in my DNS entries in compose, my ip was updated on cloudflare to reflect my actual WAN ip. 

     

    version: '2'
    services:
      cloudflare-ddns:
        image: oznu/cloudflare-ddns:latest
        restart: always
        container_name: cloudflareddns
        environment:
          - API_KEY=****
          - ZONE=****
          - PROXIED=true
        dns:
          - 172.16.0.2 (pihole)
          - 127.0.0.1
    networks:
      default:
        driver: bridge
        ipam:
         config:
           # your chosen docker network here
           - subnet: 172.15.0.0/24

    0
    Comment actions Permalink

Please sign in to leave a comment.