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
Separate variable flag container path out from APP_CODE_PATH_CONTAINER (laradock#1591)
Because Container cannot volume when use APP_CODE_PATH_CONTAINER (with flag) concat with path name, e.g. /var/www:nocache/letencrypt
This will fix 1540.
Copy file name to clipboardExpand all lines: env-example
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,11 @@
7
7
# Point to the path of your applications code on your host
8
8
APP_CODE_PATH_HOST=../
9
9
10
-
# Point to where the `APP_CODE_PATH_HOST` should be in the container. You may add flags to the path `:cached`, `:delegated`. When using Docker Sync add `:nocopy`
11
-
APP_CODE_PATH_CONTAINER=/var/www:cached
10
+
# Point to where the `APP_CODE_PATH_HOST` should be in the container
11
+
APP_CODE_PATH_CONTAINER=/var/www
12
+
13
+
# You may add flags to the path `:cached`, `:delegated`. When using Docker Sync add `:nocopy`
14
+
APP_CODE_CONTAINER_FLAG=:cached
12
15
13
16
# Choose storage path on your machine. For all storage systems
0 commit comments