chore: update docker-compose.yml to change default path for Prisma data volume to a relative path
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 8s

This commit is contained in:
Julien Froidefond
2025-12-11 11:05:49 +01:00
parent 03c74d96c4
commit b8e7c5a005

View File

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