Gremlin/Gremlin_BlazorServer/docker-compose.yml

29 lines
774 B
YAML

version: "3.3"
services:
gremlin:
container_name: gremlin
build:
context: ..
dockerfile: Dockerfile
environment:
- ASPNETCORE_ENVIRONMENT=Development
# - ASPNETCORE_URLS=https://localhost,http://localhost
- ASPNETCORE_HTTPS_PORT=8080
labels:
traefik.enable: "true"
traefik.http.routers.gremlin.entrypoints: "websecure"
traefik.http.routers.gremlin.rule: "Host(`gremlin.woitschetzki.de`)"
traefik.http.routers.gremlin.service: "gremlin"
traefik.http.routers.gremlin.tls: "true"
traefik.http.routers.gremlin.tls.certresolver: "tls_resolver"
traefik.http.services.gremlin.loadBalancer.server.port: "8080"
networks:
- proxy
networks:
proxy:
external: true