This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Description
Booting a simple Laravel5 application results in errors, because it wants to cache the current container to $APP_ROOT/bootstrap/cache/services.json
and file_put_contents
fails.
Here's an application illustrating the issue: https://github.com/cedricziel/gae-docker-writable-issue
Just deploy it to AppEngine and open up the index route.
The underlying issue seems to be that though permissions seem correct, the application cannot write to the filesystem. While this could be fixed on build-time for this particular application, one of the promises managed vms make is a writable file system so applications caching files to disk don't have to jump through hoops.