-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
26 lines (25 loc) · 883 Bytes
/
docker-compose.yaml
File metadata and controls
26 lines (25 loc) · 883 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
services:
sailingpolar:
restart: unless-stopped
build: .
ports:
- "8888:8888"
# environment:
# - PYTHONUNBUFFERED=1
# - TESTENV=1
labels:
- "traefik.enable=true"
- "traefik.http.routers.sailing-polar.entrypoints=websecure"
- "traefik.http.routers.sailing-polar.tls.certResolver=letsencrypt"
- "traefik.http.routers.sailing-polar.rule=Host(`sailingpolar.lgxerxes.cloud`)"
- "traefik.http.services.sailing-polar.loadbalancer.server.port=8888"
# HTTP router
- "traefik.http.routers.sailing-polar-http.entrypoints=web"
- "traefik.http.routers.sailing-polar-http.rule=Host(`sailingpolar.lgxerxes.cloud`)"
- "traefik.http.routers.sailing-polar-http.middlewares=redirect-to-https@file"
# to work with dokploy
networks:
- dokploy-network
networks:
dokploy-network:
external: true