Remove bootstrap cache volume from docker-compose.yml
Simplify Docker configuration by removing an unnecessary volume mapping for the Laravel bootstrap cache directory
This commit is contained in:
parent
44a4b983d5
commit
932585b9d3
|
|
@ -11,7 +11,6 @@ services:
|
||||||
COMPOSER_FLAGS: --no-dev
|
COMPOSER_FLAGS: --no-dev
|
||||||
volumes: &api-environment-volumes
|
volumes: &api-environment-volumes
|
||||||
- ./api/storage:/usr/share/nginx/html/storage:rw
|
- ./api/storage:/usr/share/nginx/html/storage:rw
|
||||||
- ./api/bootstrap/cache:/usr/share/nginx/html/bootstrap/cache:rw
|
|
||||||
environment: &api-env
|
environment: &api-env
|
||||||
APP_ENV: production
|
APP_ENV: production
|
||||||
IS_API_WORKER: "false"
|
IS_API_WORKER: "false"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue