-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
27 lines (26 loc) · 957 Bytes
/
docker-compose.yaml
File metadata and controls
27 lines (26 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
version: "3"
services:
nginx:
image: lscr.io/linuxserver/nginx:latest
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
volumes:
- ./runtime-nginx-config/:/config
- ./nginx/site-confs/proxy-gate-backend.conf:/config/nginx/site-confs/proxy-gate-backend.conf:ro
- ./nginx/site-confs/proxy-gate.conf:/config/nginx/site-confs/proxy-gate.conf:ro
- ./nginx/site-confs/sample-plex-auth.conf:/config/nginx/site-confs/sample-plex-auth.conf:ro
- ./nginx/site-confs/sample-google-auth.conf:/config/nginx/site-confs/sample-google-auth.conf:ro
- ./nginx/www/protected-index.html:/config/www/protected-index.html:ro
ports:
- 80:80
- 443:443
- 8080:8080 # proxy gate accessible via nginx
restart: unless-stopped
proxy-gate:
image: ghcr.io/digimach/proxy-gate:${BUILD_VERSION}
volumes:
- ./runtime-proxy-gate-data/:/data
restart: unless-stopped