From db2a6d765f0737d2459b7eb0b9b744601f3f2d08 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Sun, 23 Mar 2025 00:12:16 -0400 Subject: [PATCH] update templates and README repo url --- README.md | 2 +- docker-compose.yml | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3ab2d03..d04175f 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ pulling the pre-built Docker container and running it with the necessary environment variables ```sh -docker run -d -e API_KEY=123 -e ZONE_ID=023e105f4ecef8ad9ca31a8372d0c353 -e DOMAIN_NAMES=example.com,*.example.com mxmlndml/cloudflare-dynamic-dns +docker run -d -e API_KEY=123 -e ZONE_ID=023e105f4ecef8ad9ca31a8372d0c353 -e DOMAIN_NAMES=example.com,*.example.com chaussebenjamin/cloudflare-dynamic-dns ``` Alternatively you can copy the `docker-compose.yml` and `.env.template` from this repository into an diff --git a/docker-compose.yml b/docker-compose.yml index 8ec1164..34d2c81 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,9 +1,10 @@ +--- services: cloudflare-dynamic-dns: - image: mxmlndml/cloudflare-dynamic-dns:latest + image: chaussebenjamin/cloudflare-dynamic-dns:latest environment: - - "API_KEY=${API_KEY}" - - "ZONE_ID=${ZONE_ID}" - - "DOMAIN_NAMES=example.com,dyndns.example.com" + - API_KEY=${API_KEY} + - ZONE_ID=${ZONE_ID} + - DOMAIN_NAMES=example.com,dyndns.example.com # - "RECORD_TYPES=A" # - "INTERVAL=5"