diff options
Diffstat (limited to '')
| -rwxr-xr-x | bin/compose | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/compose b/bin/compose index f8c1796..e4060f2 100755 --- a/bin/compose +++ b/bin/compose @@ -41,7 +41,7 @@ elif [[ $uid -eq 0 ]] && [[ $gid -eq 0 ]]; then true # all set else # root required (1000:1000 may not exist) - exec sudo -E $command + exec sudo $command fi # ========================================================= LOAD ENVIRONMENT == @@ -86,7 +86,7 @@ function include_docker { include_docker "$CRIMSON_ROOT/docker/docker-compose.base.yml" "true" include_docker "$CRIMSON_ROOT/docker/docker-compose.db.yml" "$POSTGRES_ENABLED" include_docker "$CRIMSON_ROOT/docker/docker-compose.api.yml" "$API_ENABLED" -include_docker "$PROJECT_ROOT/conf/docker-compose.override.yml" "true" +include_docker "$PROJECT_ROOT/docker-compose.override.yml" "true" # set project name |