docker-compose.yml hinzugefügt
This commit is contained in:
parent
3058f6340e
commit
6902188b6e
|
|
@ -0,0 +1,20 @@
|
||||||
|
services:
|
||||||
|
wind_tool_standortpruefung:
|
||||||
|
build: .
|
||||||
|
container_name: wind_tool_standortpruefung
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
# Die URL unter der das Tool erreichbar sein wird
|
||||||
|
- "traefik.http.routers.wind_tool.rule=Host(`wind_tool_standortpruefung.enwelo-serverumgebung.cloud`)"
|
||||||
|
- "traefik.http.routers.wind_tool.entrypoints=websecure"
|
||||||
|
- "traefik.http.routers.wind_tool.tls=true"
|
||||||
|
- "traefik.http.routers.wind_tool.tls.certresolver=myresolver"
|
||||||
|
# Nginx im Docker-Container läuft standardmäßig auf Port 80
|
||||||
|
- "traefik.http.services.wind_tool.loadbalancer.server.port=80"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external: true
|
||||||
Loading…
Reference in New Issue