From ade1b13c172cc6305d149bb1457baad41e1fcce5 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Sat, 22 Jun 2024 22:51:06 -0400 Subject: [PATCH] remove ddns --- README.md | 20 -------------------- ddns/Containerfile | 42 ------------------------------------------ ddns/README.md | 16 ---------------- 3 files changed, 78 deletions(-) delete mode 100644 ddns/Containerfile delete mode 100644 ddns/README.md diff --git a/README.md b/README.md index df928ad..28d5c80 100755 --- a/README.md +++ b/README.md @@ -35,7 +35,6 @@ Below is a general overview (with instructions) on each Docker container I use. - [bootc-k3s-node-amd64](#bootc-k3s-node-amd64) - [bootc-nvidia-base-fedora](#bootc-nvidia-base-fedora) - [cat](#cat) -- [ddns](#ddns) - [gameserver](#gameserver) - [hello](#hello) - [helloworld](#helloworld) @@ -219,25 +218,6 @@ Below is a general overview (with instructions) on each Docker container I use. ghcr.io/cdrage/cat ``` -## [ddns](/ddns/Containerfile) - - **Description:** - - Dynamic DNS for DigitalOcean - - **Source**: https://github.com/gbolo/dockerfiles/tree/master/digitalocean-ddns - - **Running:** - - ```sh - podman run \ - -d \ - --restart always \ - -e DODDNS_TOKEN=your_api_key \ - -e DODDNS_DOMAIN=your.domain.com \ - ghcr.io/cdrage/ddns - ``` - ## [gameserver](/gameserver/Containerfile) **Description:** diff --git a/ddns/Containerfile b/ddns/Containerfile deleted file mode 100644 index 2c741f3..0000000 --- a/ddns/Containerfile +++ /dev/null @@ -1,42 +0,0 @@ -# **Description:** -# -# Dynamic DNS for DigitalOcean -# -# **Source**: https://github.com/gbolo/dockerfiles/tree/master/digitalocean-ddns -# -# **Running:** -# -# ```sh -# podman run \ -# -d \ -# --restart always \ -# -e DODDNS_TOKEN=your_api_key \ -# -e DODDNS_DOMAIN=your.domain.com \ -# ghcr.io/cdrage/ddns -# ``` - -FROM golang:1.11.2-stretch AS builder - -RUN apt-get install git make -y - -ARG do_ddns_version=master - -RUN set -xe; \ - SRC_DIR=${GOPATH}/src/github.com/gesquive/digitalocean-ddns; \ - SRC_REPO=https://github.com/gesquive/digitalocean-ddns; \ - mkdir -p ${SRC_DIR} && \ - git clone -b master --single-branch ${SRC_REPO} ${SRC_DIR} && \ - cd ${SRC_DIR}; \ - if [ "${do_ddns_version}" != "master" ]; then git checkout ${do_ddns_version}; fi && \ - make deps && make install - - -FROM golang:1.11.2-stretch - -COPY --from=builder /usr/local/bin/digitalocean-ddns /usr/local/bin/digitalocean-ddns - -#! Run as non-privileged user by default -USER 65534 - -#! Inherit gbolo/baseos entrypoint and pass it this argument -CMD ["/usr/local/bin/digitalocean-ddns"] diff --git a/ddns/README.md b/ddns/README.md deleted file mode 100644 index 5841c57..0000000 --- a/ddns/README.md +++ /dev/null @@ -1,16 +0,0 @@ - **Description:** - - Dynamic DNS for DigitalOcean - - **Source**: https://github.com/gbolo/dockerfiles/tree/master/digitalocean-ddns - - **Running:** - - ```sh - podman run \ - -d \ - --restart always \ - -e DODDNS_TOKEN=your_api_key \ - -e DODDNS_DOMAIN=your.domain.com \ - ghcr.io/cdrage/ddns - ```