Keep the dev container's compiled views out of the shared storage

The checkout is mounted at /app, so views compiled in the container and
on the host landed in one storage/framework/views, and each side read the
other's absolute paths.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01V9NnLxnPp8vaaurb3Z1MFy
This commit is contained in:
Andreas Reinhold / reini
2026-09-13 11:17:38 +02:00
co-authored by Claude Opus 5
parent accbc17c1c
commit 9fd600571d
+3
View File
@@ -12,6 +12,9 @@ services:
APP_KEY: ${APP_KEY:-}
APP_URL: http://localhost:8000
APP_ENV: local
# Compiled views stay in the container. The host shares storage/ through the mount, and
# compiled Livewire components hold absolute paths (/app/… here, the checkout's path there).
VIEW_COMPILED_PATH: /tmp/views
APP_DEBUG: "true"
SERVER_NAME: ":8000"
DB_CONNECTION: sqlite