22 lines
659 B
YAML
22 lines
659 B
YAML
|
|
services:
|
||
|
|
antragstracker:
|
||
|
|
build: .
|
||
|
|
container_name: antragstracker-hagen
|
||
|
|
restart: unless-stopped
|
||
|
|
volumes:
|
||
|
|
- ./data:/app/data
|
||
|
|
environment:
|
||
|
|
- DATABASE_PATH=/app/data/tracker.db
|
||
|
|
networks:
|
||
|
|
- collaboration_collaboration
|
||
|
|
labels:
|
||
|
|
- "traefik.enable=true"
|
||
|
|
- "traefik.http.routers.antragstracker.rule=Host(`antraege.toppyr.de`)"
|
||
|
|
- "traefik.http.routers.antragstracker.entrypoints=websecure"
|
||
|
|
- "traefik.http.routers.antragstracker.tls.certresolver=letsencrypt"
|
||
|
|
- "traefik.http.services.antragstracker.loadbalancer.server.port=8000"
|
||
|
|
|
||
|
|
networks:
|
||
|
|
collaboration_collaboration:
|
||
|
|
external: true
|