diff --git a/env-example b/env-example index 05e1e64b..64936c70 100644 --- a/env-example +++ b/env-example @@ -7,6 +7,9 @@ COMPOSE_FILE=docker-compose.yml:docker-compose.dev.yml +# Replace the above with the following line if you wish to use docker-sync. +# COMPOSE_FILE=docker-compose.yml:docker-compose.dev.yml:docker-compose.sync.yml + ### Application Path ################################################################################################### # Point to your code, will be available at `/var/www`. diff --git a/sync.sh b/sync.sh index 6955358d..0f835b37 100755 --- a/sync.sh +++ b/sync.sh @@ -59,7 +59,7 @@ if [ "$1" == "up" ] ; then print_style "Initializing Docker Compose\n" "info" shift # removing first argument - docker-compose -f docker-compose.yml -f docker-compose.sync.yml up -d ${@} + docker-compose up -d ${@} elif [ "$1" == "down" ]; then print_style "Stopping Docker Compose\n" "info"