1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-21 05:41:31 +00:00

Fix messages and rebuild without cache

This commit is contained in:
andryyy
2016-12-09 20:52:19 +01:00
parent 5b9e598f6f
commit 1715a7a871
10 changed files with 13 additions and 13 deletions

View File

@@ -50,7 +50,7 @@ if [[ ! -z $(docker ps -af "name=${NAME}" -q) ]]; then
fi
if [[ ! -z "$(docker images -q mysql:${DBVERS})" ]]; then
read -r -p "Found image locally. Rebuild anyway? [y/N] " response
read -r -p "Found image locally. Delete local image and repull? [y/N] " response
response=${response,,}
if [[ $response =~ ^(yes|y)$ ]]; then
docker rmi mysql:${DBVERS}