Merge pull request #327 from htcarr3/bugix/remove_compose_file_env_var

removing erroneous ENV variable NODE_COMPOSE_FILE from purge script
This commit is contained in:
Alex Coseru 2022-10-05 07:47:25 +03:00 committed by GitHub
commit b34189b8da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ while :; do
#################################################
--purge)
printf $COLOR_R'Doing a deep clean ...\n\n'$COLOR_RESET
eval docker-compose --project-name=$PROJECT_NAME "$COMPOSE_FILES" -f "${NODE_COMPOSE_FILE}" down
eval docker-compose --project-name=$PROJECT_NAME "$COMPOSE_FILES" down
docker network rm ${PROJECT_NAME}_default || true
docker network rm ${PROJECT_NAME}_backend || true
;;