mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-07 16:06:35 -03:00
feat: add nginx proxy manager
This commit is contained in:
parent
a5022ac91d
commit
17a046c615
1 changed files with 14 additions and 1 deletions
|
@ -42,3 +42,16 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- adguard-work:/opt/adguardhome/conf
|
- adguard-work:/opt/adguardhome/conf
|
||||||
- adguard-conf:/opt/adguardhome/work
|
- adguard-conf:/opt/adguardhome/work
|
||||||
|
|
||||||
|
## NGINX PROXY MANAGER
|
||||||
|
app:
|
||||||
|
image: 'jc21/nginx-proxy-manager:latest'
|
||||||
|
environment:
|
||||||
|
PUID: 1000
|
||||||
|
PGID: 1000
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- '80:80' # Public HTTP Port
|
||||||
|
- '443:443' # Public HTTPS Port
|
||||||
|
- '81:81' # Admin Web Port
|
||||||
|
# Add any other Stream port you want to expose
|
Loading…
Add table
Reference in a new issue