Setup scripts added

This commit is contained in:
2026-06-11 10:13:57 -04:00
parent c564ccc2ea
commit 0decccfaed
11 changed files with 778 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
ports:
# These ports are in format <host-port>:<container-port>
- '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
environment:
- TZ=America/New_York
- PUID=1000
- PGID=1000
volumes:
- nginx-data:/data
- nginx-letsencrypt:/etc/letsencrypt
volumes:
nginx-data:
driver: local
driver_opts:
type: nfs
o: "addr=14.10.10.71,rw,nfsvers=4"
device: ":/volume1/docker/nginx/data/"
nginx-letsencrypt:
driver: local
driver_opts:
type: nfs
o: "addr=14.10.10.71,rw,nfsvers=4"
device: ":/volume1/docker/nginx/letsencrypt/"