Initial commit

This commit is contained in:
2026-01-03 10:28:26 +01:00
commit c428678663
4 changed files with 199 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
services:
cloudflare-dyndns:
image: python:3.11-slim
container_name: cloudflare-dyndns
working_dir: /app
volumes:
- ./:/app:ro
- ./config.ini:/app/config.ini:ro
environment:
- CONFIG_PATH=/app/config.ini
command: >
sh -c "pip install --no-cache-dir requests && python cloudflare_dyndns.py"
restart: unless-stopped