docker-compose.yml hinzugefügt

This commit is contained in:
gitea-enwelo-jba 2026-04-23 15:17:46 +00:00
parent 3058f6340e
commit 6902188b6e
1 changed files with 20 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@ -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