fix: Use absolute path for DATABASE_URL to avoid working directory issues

This commit is contained in:
2026-03-24 14:46:15 -03:00
parent cf6b5785d7
commit 85e6304bae
2 changed files with 2 additions and 2 deletions

View File

@@ -8,5 +8,5 @@ services:
volumes:
- ./data:/app/data
environment:
- DATABASE_URL=file:./data/dev.db
- DATABASE_URL=file:/app/data/dev.db
restart: unless-stopped