Files
2026-moving-helper/docker-compose.yml
T
tliu93 eb29f03b74
test / pytest (push) Successful in 38s
add compose file for pulling
2026-04-21 22:01:23 +02:00

17 lines
455 B
YAML

services:
web:
container_name: moving-helper
image: "code.wanderingbadger.dev/tliu93/2026-moving-helper:latest"
build:
context: .
user: "${UID:-1000}:${GID:-1000}"
ports:
- "${PORT:-10000}:${PORT:-10000}"
environment:
HOST: ${HOST:-0.0.0.0}
PORT: ${PORT:-10000}
DATABASE_URL: ${DATABASE_URL:-sqlite:////app/data/app.db}
volumes:
- ${DATA_DIR:-./data}:/app/data
restart: unless-stopped