Files
recall/docker-compose.yml
Daniel Arroyo e0433f8e57 docs: Add Docker deployment documentation with data folder
- Update docker-compose to use ./data folder for SQLite database
- Add Docker section to README with setup instructions
2026-03-23 22:13:48 -03:00

13 lines
228 B
YAML

services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
- ./data:/app/data
environment:
- DATABASE_URL=file:./data/dev.db
restart: unless-stopped