From 06ee9354f41bc3482777682519892f0fe5ad0c6f Mon Sep 17 00:00:00 2001 From: sujiba Date: Mon, 12 May 2025 23:38:41 +0200 Subject: [PATCH 1/5] README.md aktualisiert --- README.md | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0616694..cbc367b 100755 --- a/README.md +++ b/README.md @@ -15,22 +15,27 @@ This container is based on the work of: * [Fernwerker ownDynDNS](https://github.com/fernwerker/ownDynDNS) ## Netcup configuration -You need to create your dns entries beforehand: +You need to create two dns entries beforehand: -| Host | Type | Destination | +| Host | Type | Destination | |----------|-------|--------------| -| vpn | AAAA | IPv6 | +| vpn | AAAA | IPv6 | | vpn | A | IPv4 | +| ddns | AAAA | IPv6 | +| ddns | A | IPv4 | + +vpn.example.com -> the domain that gets updated +ddns.example.com -> the domain your Fritz!Box calls for updates ## Container configuration -Create docker-compose.yml and config in your app directory i.e.: +Create compose.yml and config in your app directory i.e.: ``` mkdir -p /opt/docker/owndyndns cd /opt/docker/owndyndns # Create docker-compose.yml and copy the contents from repository file -vi docker-compose.yml +vi compose.yml # Create config, copy the contents from repository example.config and change the parameters vi config @@ -43,8 +48,8 @@ docker compose up -d * Login to your Fritz!Box * Go to /Internet/Freigabe/DynDNS * Set mark on "DynDNS benutzen" -* Enter Update-URL: `https:///update.php?user=&password=&ipv4=&ipv6=&domain=` - * You only have to change `https://` (http without valid TLS certificate) +* Enter Update-URL: `https://ddns.example.com/update.php?user=&password=&ipv4=&ipv6=&domain=` + * You only have to change `https://ddns.example.com` (http without valid TLS certificate) * Domainname: `vpn.example.com` * Username: Defined in config * Password: Defined in config From 7b80631220527097803caa5d8f881487a202d154 Mon Sep 17 00:00:00 2001 From: sujiba Date: Mon, 12 May 2025 23:39:08 +0200 Subject: [PATCH 2/5] README.md aktualisiert --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cbc367b..31be952 100755 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ You need to create two dns entries beforehand: | ddns | A | IPv4 | vpn.example.com -> the domain that gets updated + ddns.example.com -> the domain your Fritz!Box calls for updates ## Container configuration From f11cb8532ceefa3e3f7fe36535b15f34956a1d55 Mon Sep 17 00:00:00 2001 From: sujiba Date: Sat, 14 Jun 2025 14:48:11 +0200 Subject: [PATCH 3/5] feat: changed domain --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31be952..5af4046 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # docker-ownDynDNS-netcup -[![Worklfow](https://git.smail.koeln/homelab/docker-ownDynDNS-netcup/badges/workflows/build_main.yaml/badge.svg)](https://git.smail.koeln/homelab/docker-ownDynDNS-netcup) [![Release](https://git.smail.koeln/homelab/docker-ownDynDNS-netcup/badges/release.svg)](https://git.smail.koeln/homelab/docker-ownDynDNS-netcup/releases) +[![Worklfow](https://code.offene.cloud/homelab/docker-ownDynDNS-netcup/badges/workflows/build_main.yaml/badge.svg)](https://code.offene.cloud/homelab/docker-ownDynDNS-netcup) [![Release](https://code.offene.cloud/homelab/docker-ownDynDNS-netcup/badges/release.svg)](https://code.offene.cloud/homelab/docker-ownDynDNS-netcup/releases) - [docker-ownDynDNS-netcup](#docker-owndyndns-netcup) - [acknowledgments](#acknowledgments) From a5f5a29265b7ced2a39dfe6a2839077c1a4393e2 Mon Sep 17 00:00:00 2001 From: Sujiba Bot Date: Sat, 14 Jun 2025 12:57:52 +0000 Subject: [PATCH 4/5] chore(deps): update php docker tag to v8.4.8 --- docker-build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-build/Dockerfile b/docker-build/Dockerfile index b591f51..b476794 100755 --- a/docker-build/Dockerfile +++ b/docker-build/Dockerfile @@ -7,7 +7,7 @@ RUN apk update && \ git clone https://github.com/fernwerker/ownDynDNS.git # Build container to run the app -FROM php:8.4.7-apache +FROM php:8.4.8-apache WORKDIR /var/www/html RUN apt-get update && \ From 516e666f6cd72ea1a0f21d44a7e31197a837103e Mon Sep 17 00:00:00 2001 From: Sujiba Bot Date: Sat, 14 Jun 2025 12:57:54 +0000 Subject: [PATCH 5/5] chore(deps): update alpine docker tag to v3.22.0 --- docker-build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-build/Dockerfile b/docker-build/Dockerfile index b591f51..2c7c96b 100755 --- a/docker-build/Dockerfile +++ b/docker-build/Dockerfile @@ -1,5 +1,5 @@ # Get latest app version -FROM alpine:3.21.3 +FROM alpine:3.22.0 WORKDIR /clone-workspace RUN apk update && \ apk upgrade && \