Files
focusapp/docker-compose.yml
T
2026-08-09 13:09:01 +02:00

12 lines
396 B
YAML

services:
app:
image: ghcr.io/stefan-koelle/focusapp:latest
container_name: focusapp
restart: unless-stopped
ports:
- "5000:5000"
environment:
- ASPNETCORE_ENVIRONMENT=Production
- ASPNETCORE_URLS=http://0.0.0.0:5000
- ConnectionStrings__DefaultConnection=Server=${DB_HOST};Port=${DB_PORT};Database=${DB_NAME};User=${DB_USER};Password=${DB_PASSWORD}