From b7c9b61659d0c1c4cadc0fbc4010c0c9c81e73a8 Mon Sep 17 00:00:00 2001 From: Alejandro Sarmiento Date: Mon, 4 Mar 2024 20:20:50 +0100 Subject: [PATCH] nginx proxy manager compose --- NginxProxyManager/docker-compose.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 NginxProxyManager/docker-compose.yml diff --git a/NginxProxyManager/docker-compose.yml b/NginxProxyManager/docker-compose.yml new file mode 100644 index 0000000..db7a71f --- /dev/null +++ b/NginxProxyManager/docker-compose.yml @@ -0,0 +1,26 @@ +version: '3.8' + +services: + app: + image: 'jc21/nginx-proxy-manager:latest' + restart: unless-stopped + ports: + # These ports are in format : + - '80:80' # Public HTTP Port + - '443:443' # Public HTTPS Port + - '81:81' # Admin Web Port + # Add any other Stream port you want to expose + # - '21:21' # FTP + + # Uncomment the next line if you uncomment anything in the section + # environment: + # Uncomment this if you want to change the location of + # the SQLite DB file within the container + # DB_SQLITE_FILE: "/data/database.sqlite" + + # Uncomment this if IPv6 is not enabled on your host + # DISABLE_IPV6: 'true' + + volumes: + - ./data:/data + - ./letsencrypt:/etc/letsencrypt \ No newline at end of file