You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Run `chmod 777 app/{logs,cache,sessions}` to fix file permissions for web server. (NOTE: File
9
9
permissions should be properly secured in a production environment!)
10
10
or run `sudo chown -R 33 app/{logs,cache,sessions}` (Changes the user to the www-data user of the image, more information [here](https://serversforhackers.com/c/dckr-file-permissions) )
@@ -15,13 +15,13 @@ Now you can start up the entire Nginx + PHP + MySQL stack using docker with:
15
15
16
16
$ sudo docker-compose up -d
17
17
18
-
On the first run you need to init the database (your container name may be different depending on the name of your root directory):
18
+
On the first run you need to init the database (Be sure to execute this in the same directory, `${PWD##*/}` is a statement to get your current working directorys name):
0 commit comments