commit 75825f8b10f26d41995bf8820cd201f8ce63619c Author: Tord-Vincent Heggland Date: Tue May 5 21:32:02 2026 +0200 firstandlast diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..23a8a67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.env +ddns diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..96a00cd --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,11 @@ +version: "3.8" +services: + ddns: + image: qmcgaw/ddns-updater + container_name: ddns + restart: unless-stopped + environment: + - PERIOD=5m + - CONFIG_FILE=/updater/data/config.json + volumes: + - ./ddns:/updater/data