NoteCat/docker/docker-compose.testing.yml

23 lines
488 B
YAML
Raw Permalink Normal View History

version: '3.4'
2020-06-28 17:20:42 +02:00
services:
web:
build:
context: ..
target: production
2020-06-28 17:20:42 +02:00
restart: always
env_file:
- .env.testing
2020-06-28 17:20:42 +02:00
networks:
- traefik
labels:
traefik.enable: true
traefik.http.routers.notecat.rule: Host(`notecat.dev.0xbd.space`)
traefik.http.routers.notecat.entrypoints: https
traefik.http.routers.notecat.tls: true
traefik.http.routers.notecat.tls.certresolver: letsencrypt
2020-06-28 17:20:42 +02:00
networks:
traefik:
external: true