update.sh 6.8 KB

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