From 47c74d13344178c16aa8e5f38493d85102f9dfbc Mon Sep 17 00:00:00 2001 From: francoisfaubert Date: Thu, 23 Nov 2017 14:02:56 -0500 Subject: [PATCH 1/2] Added clarification on how to split multiple docker-compose files within COMPOSE_FILE on Windows --- env-example | 1 + 1 file changed, 1 insertion(+) diff --git a/env-example b/env-example index 75c91958..e4e65432 100644 --- a/env-example +++ b/env-example @@ -25,6 +25,7 @@ DATA_SAVE_PATH=~/.laradock/data ### Docker compose files ############################################################################################### # Select which docker-compose files to include. # If using docker-sync. Set the value to: docker-compose.yml:docker-compose.dev.yml:docker-compose.sync.yml +# Change the separator from : to ; on Windows COMPOSE_FILE=docker-compose.yml:docker-compose.dev.yml From c11658559a5bddc43ab76f51c90bebaab39927f3 Mon Sep 17 00:00:00 2001 From: francoisfaubert Date: Thu, 23 Nov 2017 14:21:38 -0500 Subject: [PATCH 2/2] Updated the documentation to illustrate my proposition --- DOCUMENTATION/content/getting-started/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/DOCUMENTATION/content/getting-started/index.md b/DOCUMENTATION/content/getting-started/index.md index cbbdfb68..164aa861 100644 --- a/DOCUMENTATION/content/getting-started/index.md +++ b/DOCUMENTATION/content/getting-started/index.md @@ -162,6 +162,7 @@ cp env-example .env You can edit the `.env` file to chose which software's you want to be installed in your environment. You can always refer to the `docker-compose.yml` file to see how those variables are been used. +Depending on the host's operating system you may need to change the value given to `COMPOSE_FILE`. When you are running Laradock on Mac OS the correct file separator to use is `:`. When running Laradock from a Windows environment multiple files must be separated with `;`. 2 - Build the enviroment and run it using `docker-compose`