publish
parent
75c18a235b
commit
2f4b684178
@ -1,7 +1,28 @@
|
|||||||
version: "3.3"
|
version: "3.3"
|
||||||
services:
|
services:
|
||||||
web:
|
gremlin:
|
||||||
container_name: gremlin_docker
|
container_name: gremlin
|
||||||
build:
|
build:
|
||||||
context: ..
|
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
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue