feat: batteries-included deployment — compose, .env.example, sane defaults
Some checks failed
CI / Check / Test (push) Failing after 6m21s

This commit is contained in:
2026-06-04 17:32:34 +02:00
parent 4bd8dcbf05
commit 7e8a1b8379
5 changed files with 89 additions and 83 deletions

28
docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
services:
app:
build:
context: .
args:
FEATURES: sqlite,sqlite-federation
ports:
- "3000:3000"
env_file: .env
volumes:
- data:/data
restart: unless-stopped
worker:
build:
context: .
args:
FEATURES: sqlite,sqlite-federation
entrypoint: ["./worker"]
env_file: .env
volumes:
- data:/data
restart: unless-stopped
depends_on:
- app
volumes:
data: