@@ -22,7 +22,18 @@ Three additional containers are included that handle Composer, NPM, and Artisan
22
22
23
23
- ` docker-compose run --rm composer update `
24
24
- ` docker-compose run --rm npm run dev `
25
- - ` docker-compose run --rm artisan migrate `
25
+ - ` docker-compose run --rm artisan migrate `
26
+
27
+ ##Permission Issues
28
+
29
+ If you encounter any issues with filesystem permissions while visiting your application or running a container command, try doing the following:
30
+
31
+ - Bring any container(s) down with` docker-compose down `
32
+ - Copy the` .env.example ` file in the root of this repo to` .env `
33
+ - Modify the values in the` .env ` file to match the user/group that the` src ` directory is owned by on the host system
34
+ - Re-build the containers by running` docker-compose build --no-cache `
35
+
36
+ Then, either bring back up your container network or re-run the command you were trying before, and see if that fixes it.
26
37
27
38
##Persistent MySQL Storage
28
39