commit 07b1161709d2a4f16792987065b2eae33d2b8d41 Author: Teddy Date: Sun Feb 15 16:29:24 2026 +0000 init diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..c954760 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,24 @@ +services: + app: + image: 'docker.io/jc21/nginx-proxy-manager:latest' + container_name: nginx-proxy-manager + restart: unless-stopped + ports: + - '80:80' + - '81:81' + - '443:443' + volumes: + - npm_data:/data + - npm_letsencrypt:/etc/letsencrypt + networks: + - nginx_default + - forgejo_default # Add this line + +networks: + nginx_default: + forgejo_default: + external: true # Add this section + +volumes: + npm_data: + npm_letsencrypt: