cloudflare-ddns icon indicating copy to clipboard operation
cloudflare-ddns copied to clipboard

High network usage

Open jaimeferj opened this issue 5 months ago • 1 comments

I was very surprised about the network usage for this container:

Screenshot from 2024-09-28 13-33-36

Is this normal? Because I do not see any reason why this network bandwidth would be taken for updating a dns.

My docker-compose.yml:

  cloudflare-ddns:
    image: timothyjmiller/cloudflare-ddns:latest
    container_name: cloudflare-ddns
    security_opt:
      - no-new-privileges:true
    network_mode: "host"
    environment:
      - PUID=$PUID
      - PGID=$PGID
    volumes:
      - ./config.json:/config.json
    restart: unless-stopped

My config.json:

{
  "cloudflare": [
    {
      "authentication": {
        "api_token": "whatever"
      },
      "zone_id": "whatever",
      "subdomains": [
        {
          "name": "whatever",
          "proxied": false
        }
]
}
  ],
  "a": true,
  "aaaa": true,
  "purgeUnknownRecords": false,
  "ttl": 300
}

jaimeferj avatar Sep 28 '24 11:09 jaimeferj