add temporary deploy

This commit is contained in:
2026-04-19 13:33:43 +02:00
parent 314fc16b98
commit e7a2719fa1
7 changed files with 286 additions and 69 deletions
+5 -4
View File
@@ -1,14 +1,15 @@
services:
web:
container_name: moving-helper
build:
context: .
user: "1000:1000"
user: "${UID:-1000}:${GID:-1000}"
ports:
- "${PORT:-10000}:${PORT:-10000}"
environment:
HOST: 0.0.0.0
HOST: ${HOST:-0.0.0.0}
PORT: ${PORT:-10000}
DATABASE_URL: sqlite:////app/data/app.db
DATABASE_URL: ${DATABASE_URL:-sqlite:////app/data/app.db}
volumes:
- ./data:/app/data
- ${DATA_DIR:-./data}:/app/data
restart: unless-stopped