From 770eae8cbe781bd85e895908db583db6a594139b Mon Sep 17 00:00:00 2001 From: Marc Blatter Date: Tue, 24 Mar 2026 15:09:17 +0000 Subject: [PATCH] Initiale Version --- compose-proxy.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 compose-proxy.yml diff --git a/compose-proxy.yml b/compose-proxy.yml new file mode 100644 index 0000000..3f09e9a --- /dev/null +++ b/compose-proxy.yml @@ -0,0 +1,19 @@ +# compose-proxy.yml +# https://git.bizmark.cloud/marc/bizMark.git +services: + proxy: + image: 'jc21/nginx-proxy-manager:latest' + container_name: proxy-manager + restart: unless-stopped + ports: + - '80:80' # Public HTTP + - '443:443' # Public HTTPS + - '81:81' # Admin Web Port + environment: + DB_SQLITE_FILE: "/data/database.sqlite" + # Uncomment this if IPv6 is not enabled on your host + DISABLE_IPV6: 'true' + volumes: + # Restriction of filesystem -bizMark + - /opt/proxy-manager/data:/data + - /opt/proxy-manager/letsencrypt:/etc/letsencrypt \ No newline at end of file