update.sh 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. #!/bin/bash
  2. if [[ -z $(which curl) ]]; then echo "Cannot find curl, exiting."; exit 1; fi
  3. if [[ -z $(which docker-compose) ]]; then echo "Cannot find docker-compose, exiting."; exit 1; fi
  4. if [[ -z $(which docker) ]]; then echo "Cannot find docker, exiting."; exit 1; fi
  5. if [[ -z $(which git) ]]; then echo "Cannot find git, exiting."; exit 1; fi
  6. if [[ -z $(which awk) ]]; then echo "Cannot find awk, exiting."; exit 1; fi
  7. if [[ -z $(which sha1sum) ]]; then echo "Cannot find sha1sum, exiting."; exit 1; fi
  8. CONFIG_ARRAY=("SKIP_LETS_ENCRYPT" "SKIP_CLAMD" "SKIP_IP_CHECK" "SKIP_FAIL2BAN" "ADDITIONAL_SAN" "DOVEADM_PORT")
  9. echo >> mailcow.conf
  10. for option in ${CONFIG_ARRAY[@]}; do
  11. if [[ ${option} == "ADDITIONAL_SAN" ]]; then
  12. if ! grep -q ${option} mailcow.conf; then
  13. echo "Adding new option \"${option}\" to mailcow.conf"
  14. echo "${option}=" >> mailcow.conf
  15. fi
  16. elif [[ ${option} == "COMPOSE_PROJECT_NAME" ]]; then
  17. if ! grep -q ${option} mailcow.conf; then
  18. echo "Adding new option \"${option}\" to mailcow.conf"
  19. echo "COMPOSE_PROJECT_NAME=mailcow-dockerized" >> mailcow.conf
  20. fi
  21. elif [[ ${option} == "DOVEADM_PORT" ]]; then
  22. if ! grep -q ${option} mailcow.conf; then
  23. echo "Adding new option \"${option}\" to mailcow.conf"
  24. echo "DOVEADM_PORT=127.0.0.1:19991" >> mailcow.conf
  25. fi
  26. elif ! grep -q ${option} mailcow.conf; then
  27. echo "Adding new option \"${option}\" to mailcow.conf"
  28. echo "${option}=n" >> mailcow.conf
  29. fi
  30. done
  31. echo -en "Checking internet connection... "
  32. curl -o /dev/null google.com -sm3
  33. if [[ $? != 0 ]]; then
  34. echo -e "\e[31mfailed\e[0m"
  35. exit 1
  36. else
  37. echo -e "\e[32mOK\e[0m"
  38. fi
  39. set -o pipefail
  40. export LC_ALL=C
  41. DATE=$(date +%Y-%m-%d_%H_%M_%S)
  42. BRANCH=$(git rev-parse --abbrev-ref HEAD)
  43. case "${1}" in
  44. --check|-c)
  45. echo "Checking remote code for updates..."
  46. git fetch origin ${BRANCH}
  47. if ! git diff origin/${BRANCH} --quiet; then
  48. echo "Updated code is available."
  49. exit 0
  50. else
  51. echo "No updates available."
  52. exit 3
  53. fi
  54. ;;
  55. esac
  56. echo -e "\e[32mChecking for newer update script...\e[0m"
  57. SHA1_1=$(sha1sum update.sh)
  58. git fetch origin ${BRANCH}
  59. git checkout origin/${BRANCH} update.sh
  60. SHA1_2=$(sha1sum update.sh)
  61. if [[ ${SHA1_1} != ${SHA1_2} ]]; then
  62. echo "update.sh changed, please run this script again, exiting."
  63. chmod +x update.sh
  64. exit 0
  65. fi
  66. if [[ -f mailcow.conf ]]; then
  67. source mailcow.conf
  68. else
  69. echo -e "\e[31mNo mailcow.conf - is mailcow installed?\e[0m"
  70. exit 1
  71. fi
  72. read -r -p "Are you sure you want to update mailcow: dockerized? All containers will be stopped. [y/N] " response
  73. if [[ ! "$response" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
  74. echo "OK, exiting."
  75. exit 0
  76. fi
  77. #echo -e "Stopping mailcow... "
  78. #sleep 2
  79. #docker-compose down
  80. # Silently fixing remote url from andryyy to mailcow
  81. git remote set-url origin https://github.com/mailcow/mailcow-dockerized
  82. echo -e "\e[32mCommitting current status...\e[0m"
  83. git add -u
  84. git commit -am "Before update on ${DATE}" > /dev/null
  85. echo -e "\e[32mFetching updated code from remote...\e[0m"
  86. git fetch origin ${BRANCH}
  87. echo -e "\e[32mMerging local with remote code (recursive, options: \"theirs\", \"patience\"...\e[0m"
  88. git merge -Xtheirs -Xpatience -m "After update on ${DATE}"
  89. # Need to use a variable to not pass return codes of if checks
  90. MERGE_RETURN=$?
  91. if [[ ${MERGE_RETURN} == 128 ]]; then
  92. echo -e "\e[31m\nOh no, what happened?\n=> You most likely added files to your local mailcow instance that were now added to the official mailcow repository. Please move them to another location before updating mailcow.\e[0m"
  93. exit 1
  94. elif [[ ${MERGE_RETURN} == 1 ]]; then
  95. echo -e "\e[93mPotenial conflict, trying to fix...\e[0m"
  96. git status --porcelain | grep -E "UD|DU" | awk '{print $2}' | xargs rm -v
  97. git add -A
  98. git commit -m "After update on ${DATE}" > /dev/null
  99. git checkout .
  100. echo -e "\e[32mRemoved and recreated files if necessary.\e[0m"
  101. elif [[ ${MERGE_RETURN} != 0 ]]; then
  102. echo -e "\e[31m\nOh no, something went wrong. Please check the error message above.\e[0m"
  103. echo
  104. echo "Run docker-compose up -d to restart your stack without updates or try again after fixing the mentioned errors."
  105. exit 1
  106. fi
  107. echo -e "\e[32mFetching new docker-compose version...\e[0m"
  108. sleep 2
  109. if [[ $(curl -sL -w "%{http_code}" https://www.servercow.de/docker-compose/latest.php -o /dev/null) == "200" ]]; then
  110. LATEST_COMPOSE=$(curl -#L https://www.servercow.de/docker-compose/latest.php)
  111. curl -#L https://github.com/docker/compose/releases/download/${LATEST_COMPOSE}/docker-compose-$(uname -s)-$(uname -m) > $(which docker-compose)
  112. chmod +x $(which docker-compose)
  113. else
  114. echo -e "\e[33mCannot determine latest docker-compose version, skipping...\e[0m"
  115. fi
  116. echo -e "\e[32mFetching new images, if any...\e[0m"
  117. sleep 2
  118. docker-compose pull --parallel
  119. # Fix missing SSL, does not overwrite existing files
  120. [[ ! -d data/assets/ssl ]] && mkdir -p data/assets/ssl
  121. cp -n data/assets/ssl-example/*.pem data/assets/ssl/
  122. echo -e "\e[32mStarting mailcow...\e[0m"
  123. sleep 2
  124. docker-compose up -d --remove-orphans
  125. echo -e "\e[32mCollecting garbage...\e[0m"
  126. IMGS_TO_DELETE=()
  127. for container in $(grep -oP "image: \Kmailcow.+" docker-compose.yml); do
  128. REPOSITORY=${container/:*}
  129. TAG=${container/*:}
  130. V_MAIN=${container/*.}
  131. V_SUB=${container/*.}
  132. EXISTING_TAGS=$(docker images | grep ${REPOSITORY} | awk '{ print $2 }')
  133. for existing_tag in ${EXISTING_TAGS[@]}; do
  134. V_MAIN_EXISTING=${existing_tag/*.}
  135. V_SUB_EXISTING=${existing_tag/*.}
  136. # Not an integer
  137. [[ ! $V_MAIN_EXISTING =~ ^[0-9]+$ ]] && continue
  138. [[ ! $V_SUB_EXISTING =~ ^[0-9]+$ ]] && continue
  139. if [[ $V_MAIN_EXISTING == "latest" ]]; then
  140. echo "Found deprecated label \"latest\" for repository $REPOSITORY, it should be deleted."
  141. IMGS_TO_DELETE+=($REPOSITORY:$existing_tag)
  142. elif [[ $V_MAIN_EXISTING -lt $V_MAIN ]]; then
  143. echo "Found tag $existing_tag for $REPOSITORY, which is older than the current tag $TAG and should be deleted."
  144. IMGS_TO_DELETE+=($REPOSITORY:$existing_tag)
  145. elif [[ $V_SUB_EXISTING -lt $V_SUB ]]; then
  146. echo "Found tag $existing_tag for $REPOSITORY, which is older than the current tag $TAG and should be deleted."
  147. IMGS_TO_DELETE+=($REPOSITORY:$existing_tag)
  148. fi
  149. done
  150. done
  151. if [[ ! -z ${IMGS_TO_DELETE[*]} ]]; then
  152. echo "Run the following command to delete unused image tags:"
  153. echo
  154. echo " docker rmi ${IMGS_TO_DELETE[*]}"
  155. echo
  156. read -r -p "Do you want to delete old image tags right now? [Y/n] " response
  157. if [[ "$response" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
  158. docker rmi ${IMGS_TO_DELETE[*]}
  159. else
  160. echo "OK, skipped."
  161. fi
  162. fi
  163. echo -e "\e[32mFurther cleanup...\e[0m"
  164. echo "If you want to cleanup further garbage collected by Docker, please make sure all containers are up and running before cleaning your system by executing \"docker system prune\""
  165. #echo "In case you encounter any problem, hard-reset to a state before updating mailcow:"
  166. #echo
  167. #git reflog --color=always | grep "Before update on "
  168. #echo
  169. #echo "Use \"git reset --hard hash-on-the-left\" and run docker-compose up -d afterwards."