chore: update docker-compose.yml to specify absolute path for Prisma data volume
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 7s

This commit is contained in:
Julien Froidefond
2025-12-11 11:01:09 +01:00
parent de505cc8f6
commit 5da6f9f991

View File

@@ -14,7 +14,7 @@ services:
- "3020:3000" - "3020:3000"
volumes: volumes:
- stripstream_cache:/app/.cache - stripstream_cache:/app/.cache
- ${PRISMA_DATA_PATH:-./prisma/data}:/app/data - ${PRISMA_DATA_PATH:-./Users/julienfroidefond/Documents/stripstream/prisma/data}:/app/data
environment: environment:
- NODE_ENV=${NODE_ENV} - NODE_ENV=${NODE_ENV}
- DATABASE_URL=file:./data/stripstream.db - DATABASE_URL=file:./data/stripstream.db