From d9acb4bf1fd1676ca4b1c8d63d59458fd60bf104 Mon Sep 17 00:00:00 2001 From: sujiba Date: Thu, 30 May 2024 23:23:56 +0200 Subject: [PATCH] changes --- .../workflows/docker_build_push.yaml | 6 ++++-- .gitignore | 3 ++- README.md | 9 +++++++-- docker-compose.yaml | 2 +- config => example.config | 0 5 files changed, 14 insertions(+), 6 deletions(-) rename .github/workflows/docker_build_push.yml => .forgejo/workflows/docker_build_push.yaml (94%) rename config => example.config (100%) diff --git a/.github/workflows/docker_build_push.yml b/.forgejo/workflows/docker_build_push.yaml similarity index 94% rename from .github/workflows/docker_build_push.yml rename to .forgejo/workflows/docker_build_push.yaml index 2f35ccf..7154df9 100755 --- a/.github/workflows/docker_build_push.yml +++ b/.forgejo/workflows/docker_build_push.yaml @@ -2,14 +2,16 @@ name: Build and push dyndns-netcup on: push: - branches: [main] + branches: + - main + jobs: build: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Login to Docker Hub uses: docker/login-action@v1 diff --git a/.gitignore b/.gitignore index 2eea525..11d78b7 100755 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.env \ No newline at end of file +.env +config \ No newline at end of file diff --git a/README.md b/README.md index 9769ccc..778caa8 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,12 @@ # ownDynDNS-netcup -![docker-build](https://github.com/sujiba/ownDynDNS-netcup/actions/workflows/docker_build_push.yml/badge.svg?event=push) +- [ownDynDNS-netcup](#owndyndns-netcup) + - [acknowledgments](#acknowledgments) + - [Nectup configuration](#nectup-configuration) + - [Container configuration](#container-configuration) + - [Fritz!Box configuration](#fritzbox-configuration) +## acknowledgments This container is based on the work of: * [PHP](https://hub.docker.com/_/php) @@ -25,7 +30,7 @@ cd /opt/docker/owndyndns # Create docker-compose.yml and copy the contents from repository file vi docker-compose.yml -# Create config, copy the contents from repository file and change the parameters +# Create config, copy the contents from repository example.config and change the parameters vi config # Start the Container with diff --git a/docker-compose.yaml b/docker-compose.yaml index 35c7875..c7f9ce8 100755 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -2,7 +2,7 @@ version: "3" services: ownDynDNS: - image: sujiba/docker-owndyndns-netcup + image: sujiba/docker-owndyndns-netcup:latest container_name: ownDynDNS # Run container behind reverse proxy ports: diff --git a/config b/example.config similarity index 100% rename from config rename to example.config