commit 9afcf365531ceefa1534772d6d6c3e19a4745305 Author: Ryan Harg Date: Fri Nov 29 10:10:22 2024 +0100 Initial diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d344ba6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +config.json diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..49fb5ce --- /dev/null +++ b/compose.yml @@ -0,0 +1,9 @@ +services: + ddnsclient: + image: registry.azw27.de/ddnsclient/ddnsclient:latest + network_mode: host + environment: + - QUARKUS_HTTP_PORT=11000 + volumes: + - ./config.json:/home/jboss/config.json + restart: unless-stopped