OTM/docker-compose.yml
choelzl 32bbc85e11
All checks were successful
continuous-integration/drone/push Build is passing
cleanup
2021-07-16 17:48:38 +02:00

25 lines
757 B
YAML

version: "3.7"
networks:
external:
external: true
volumes:
otm_db:
services:
otm:
build: ./
container_name: otm
networks:
- external
volumes:
- otm_db:/usr/src/app/db
labels:
- "traefik.enable=true"
- "traefik.http.routers.otm.entrypoints=web-secure"
- "traefik.http.routers.otm.rule=Host(`otm.helcel.net`)"
- "traefik.http.routers.otm.tls=true"
- "traefik.http.services.otm.loadbalancer.server.port=8080"
- "traefik.docker.network=external"
restart: always