Files
2026-moving-helper/docker-compose.yml
T

15 lines
295 B
YAML
Raw Normal View History

2026-04-19 12:13:07 +02:00
services:
web:
build:
context: .
user: "1000:1000"
ports:
- "${PORT:-10000}:${PORT:-10000}"
environment:
HOST: 0.0.0.0
PORT: ${PORT:-10000}
DATABASE_URL: sqlite:////app/data/app.db
volumes:
- ./data:/app/data
restart: unless-stopped