Skip to content

Commit 58df60e

Browse files
committed
Add nginxproxymanager compose
1 parent f3a9be4 commit 58df60e

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
networks:
2+
app_network:
3+
external: true
4+
5+
volumes:
6+
nginxproxymanager-data:
7+
external: true
8+
name: nginxproxymanager_data
9+
10+
services:
11+
app:
12+
image: "jc21/nginx-proxy-manager:latest"
13+
restart: unless-stopped
14+
ports:
15+
- "80:80" # Public HTTP Port
16+
- "443:443" # Public HTTPS Port
17+
- "81:81" # Admin Web Port
18+
volumes:
19+
- nginxproxymanager-data:/data
20+
- nginxproxymanager-data:/etc/letsencrypt
21+
networks:
22+
- app_network
23+
healthcheck:
24+
test: ["CMD", "/usr/bin/check-health"]
25+
interval: 10s
26+
timeout: 3s

0 commit comments

Comments
 (0)