-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 870 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (28 loc) · 870 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
28
29
services:
frontend:
image: ghcr.io/hsheth2/ppa-stats-frontend:latest
build: frontend
restart: always
labels:
traefik.enable: true
traefik.http.routers.ppa-stats-frontend.rule: Host(`ppa-stats.sheth.io`)
traefik.http.routers.ppa-stats-frontend.tls: true
traefik.http.routers.ppa-stats-frontend.middlewares: SecureTLS
networks:
- traefik
- default
lp-proxy:
image: ghcr.io/hsheth2/ppa-stats-lp-proxy:latest
build: lp-proxy
restart: always
labels:
traefik.enable: true
traefik.http.routers.ppa-stats-lp-proxy.rule: "Host(`ppa-stats.sheth.io`) && PathPrefix(`/lp-api`)"
traefik.http.routers.ppa-stats-lp-proxy.tls: true
traefik.http.routers.ppa-stats-lp-proxy.middlewares: SecureTLS
networks:
- traefik
- default
networks:
traefik:
external: true