Compare commits
No commits in common. "261ae5a62096787dd0dd054243689e381b0739f8" and "1a07c433a37849cf6b7d7cd5a57d9ac5ca2cf454" have entirely different histories.
261ae5a620
...
1a07c433a3
4 changed files with 17 additions and 7 deletions
1
nginx-proxy-manager/.env-example
Normal file
1
nginx-proxy-manager/.env-example
Normal file
|
@ -0,0 +1 @@
|
||||||
|
BASE_DATA_DIR=
|
16
nginx-proxy-manager/nginx-proxy-manager-compose.yml
Normal file
16
nginx-proxy-manager/nginx-proxy-manager-compose.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
version: '3.8'
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
image: jc21/nginx-proxy-manager:latest
|
||||||
|
container_name: nginx-proxy-manager
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
- 81:81
|
||||||
|
- 443:443
|
||||||
|
volumes:
|
||||||
|
- ${BASE_DATA_DIR}/nginx-proxy-manager/data:/data
|
||||||
|
- ${BASE_DATA_DIR}/nginx-proxy-manager/letsencrypt:/etc/letsencrypt
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
name: nginx-proxy-manager
|
|
@ -1,4 +1,3 @@
|
||||||
BASE_DATA_DIR=
|
BASE_DATA_DIR=
|
||||||
TZ=
|
TZ=
|
||||||
WEB_PORT=
|
|
||||||
WEBPASSWORD=
|
WEBPASSWORD=
|
||||||
|
|
|
@ -5,14 +5,8 @@ services:
|
||||||
container_name: pihole
|
container_name: pihole
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
network_mode: host
|
network_mode: host
|
||||||
ports:
|
|
||||||
- "53:53/tcp"
|
|
||||||
- "53:53/udp"
|
|
||||||
- "67:67/udp" # Only required if you are using Pi-hole as your DHCP server
|
|
||||||
- "8088:8088/tcp"
|
|
||||||
environment:
|
environment:
|
||||||
TZ: ${TZ}
|
TZ: ${TZ}
|
||||||
WEB_PORT: ${WEB_PORT}
|
|
||||||
WEBPASSWORD: ${WEBPASSWORD}
|
WEBPASSWORD: ${WEBPASSWORD}
|
||||||
volumes:
|
volumes:
|
||||||
- ${BASE_DATA_DIR}/pihole/etc-pihole:/etc/pihole
|
- ${BASE_DATA_DIR}/pihole/etc-pihole:/etc/pihole
|
||||||
|
|
Loading…
Reference in a new issue