pull/3/head
Sascha Woitschetzki 2023-09-26 08:00:54 +07:00
parent 75c18a235b
commit 2f4b684178
1 changed files with 24 additions and 3 deletions

@ -1,7 +1,28 @@
version: "3.3"
services:
web:
container_name: gremlin_docker
gremlin:
container_name: gremlin
build:
context: ..
dockerfile: /home/sascha/coding/cs/Gremlin/Dockerfile
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