From c90335b8e42c36b404933effb75fdca98c60f660 Mon Sep 17 00:00:00 2001 From: Tim Miller <46549361+timothymiller@users.noreply.github.com> Date: Fri, 7 Aug 2020 19:06:52 -0400 Subject: [PATCH 1/3] Update README.md Added link to precompiled docker images on DockerHub. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 70ebeb9..a3977ba 100755 --- a/README.md +++ b/README.md @@ -47,6 +47,8 @@ You can save yourself some trouble when hosting multiple domains pointing to the ## :whale: Deploy with Docker Compose +Precompiled images are available via the official docker container [on DockerHub](https://hub.docker.com/r/timothyjmiller/cloudflare-ddns). + Modify the host file path of config.json inside the volumes section of docker-compose.yml. ```yml From 86499b038af582a11f0a195bb1978c7674f27ee3 Mon Sep 17 00:00:00 2001 From: Luigi Cruz Date: Fri, 7 Aug 2020 20:16:06 -0300 Subject: [PATCH 2/3] Update docker-compose.yml --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 07ec82a..b48c630 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: "3.7" services: cloudflare-ddns: - image: timothymiller/cloudflare-ddns:latest + image: timothyjmiller/cloudflare-ddns:latest container_name: cloudflare-ddns security_opt: - no-new-privileges:true @@ -10,4 +10,4 @@ services: - PGID=1000 volumes: - /EDIT/YOUR/PATH/HERE/config.json:/config.json - restart: unless-stopped \ No newline at end of file + restart: unless-stopped From ddc84cec9681b7620928663b9503bf11288b66f1 Mon Sep 17 00:00:00 2001 From: Merlin Schumacher Date: Tue, 11 Aug 2020 14:09:19 +0200 Subject: [PATCH 3/3] Fix image path in docker-compose example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3977ba..7b0ab37 100755 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Modify the host file path of config.json inside the volumes section of docker-co version: "3.7" services: cloudflare-ddns: - image: timothymiller/cloudflare-ddns:latest + image: timothyjmiller/cloudflare-ddns:latest container_name: cloudflare-ddns security_opt: - no-new-privileges:true