refactor(apps): remove docker image prune in dashboard (#17405)

refactor(apps): remove docker image prune in dash
This commit is contained in:
Mike Delago
2023-10-07 17:18:40 -04:00
committed by GitHub
parent 366b8d01fc
commit 619f7297f9

View File

@@ -79,7 +79,6 @@ while [[ $# -gt 0 ]]; do
pull)
set -x
docker compose --profile local --profile dev --profile dev-build pull
docker image prune -f
set +x
shift
;;
@@ -87,7 +86,6 @@ while [[ $# -gt 0 ]]; do
build:nocache)
set -x
docker compose --profile local --profile dev --profile dev-build build --no-cache
docker image prune -f
docker compose run --rm --no-deps ac-dev-build /bin/bash /azerothcore/apps/docker/docker-build-dev.sh
set +x
shift
@@ -95,7 +93,6 @@ while [[ $# -gt 0 ]]; do
clean:build)
set -x
docker image prune -f
docker compose run --rm --no-deps ac-dev-server bash acore.sh compiler clean
docker compose run --rm --no-deps ac-dev-server bash acore.sh compiler ccacheClean
set +x
@@ -141,7 +138,6 @@ while [[ $# -gt 0 ]]; do
build:prod|prod:build)
set -x
docker compose --profile prod build
docker image prune -f
set +x
shift
;;