Files
hamann-ausgabe-core/docker-compose.yml
Simon Martens bd563f6dae +Docker
2025-09-30 17:41:04 +02:00

20 lines
478 B
YAML

name: hamann-ausgabe
services:
web:
build: .
volumes:
- hamann_data:/app/data
ports:
- "5000:5000"
environment:
- ASPNETCORE_URLS=http://+:5000
- DOTNET_ENVIRONMENT=Production
- FileStoragePath=/app/data
- RepositoryBranch=Release
- RepositoryURL=https://github.com/Theodor-Springmann-Stiftung/hamann-xml
- WebhookSecret=${WEBHOOK_SECRET:-}
restart: unless-stopped
volumes:
hamann_data:
external: true