This commit is contained in:
hackerESQ
2025-01-26 21:38:59 -06:00
parent b71e9e2e80
commit b3ca2e5927
2 changed files with 15 additions and 14 deletions
+14
View File
@@ -9,6 +9,20 @@ services:
tty: true
ports:
- "${APP_PORT:-8000}:80"
environment:
- APP_KEY= # Generate a key using `openssl rand -base64 32`
- APP_URL="http://localhost:8000"
- ASSET_URL="http://localhost:8000"
- DB_CONNECTION=mysql
- DB_HOST=investbrain-mysql
- DB_PORT=3306
- DB_DATABASE=investbrain
- DB_USERNAME=investbrain
- DB_PASSWORD=investbrain
- SESSION_DRIVER=redis
- QUEUE_CONNECTION=redis
- CACHE_STORE=redis
- REDIS_HOST=investbrain-redis
volumes:
- ./storage:/var/www/app/storage:delegated
depends_on: