fix: ensure storage path permissions are set in entry script

This commit is contained in:
hackerESQ
2025-01-29 22:53:32 -06:00
parent 1faa22897b
commit 4b780fd6d2
5 changed files with 36 additions and 42 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ services:
ports:
- "${APP_PORT:-8000}:80"
environment:
APP_KEY: "" # Generate a key using `openssl rand -base64 32`
APP_KEY: "" # Generate a key using `echo base64:$(openssl rand -base64 32)`
APP_URL: "http://localhost:8000"
ASSET_URL: "http://localhost:8000"
DB_CONNECTION: mysql
@@ -24,7 +24,7 @@ services:
CACHE_STORE: redis
REDIS_HOST: investbrain-redis
volumes:
- ./storage:/var/www/app/storage:delegated
- ./storage:/var/app/storage
depends_on:
- mysql
- redis