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

17 lines
455 B
YAML
Raw Normal View History

2026-04-19 12:13:07 +02:00
services:
web:
2026-04-19 13:33:43 +02:00
container_name: moving-helper
2026-04-21 22:01:23 +02:00
image: "code.wanderingbadger.dev/tliu93/2026-moving-helper:latest"
2026-04-19 12:13:07 +02:00
build:
context: .
2026-04-19 13:33:43 +02:00
user: "${UID:-1000}:${GID:-1000}"
2026-04-19 12:13:07 +02:00
ports:
- "${PORT:-10000}:${PORT:-10000}"
environment:
2026-04-19 13:33:43 +02:00
HOST: ${HOST:-0.0.0.0}
2026-04-19 12:13:07 +02:00
PORT: ${PORT:-10000}
2026-04-19 13:33:43 +02:00
DATABASE_URL: ${DATABASE_URL:-sqlite:////app/data/app.db}
2026-04-19 12:13:07 +02:00
volumes:
2026-04-19 13:33:43 +02:00
- ${DATA_DIR:-./data}:/app/data
2026-04-19 12:13:07 +02:00
restart: unless-stopped