update.sh 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. echo -en "Checking internet connection... "
  9. curl -o /dev/null google.com -sm3
  10. if [[ $? != 0 ]]; then
  11. echo -e "\e[31mfailed\e[0m"
  12. exit 1
  13. else
  14. echo -e "\e[32mOK\e[0m"
  15. fi
  16. set -o pipefail
  17. export LC_ALL=C
  18. DATE=$(date +%Y-%m-%d_%H_%M_%S)
  19. BRANCH=$(git rev-parse --abbrev-ref HEAD)
  20. case "${1}" in
  21. --check|-c)
  22. echo "Checking remote code for updates..."
  23. git fetch origin ${BRANCH}
  24. if ! git diff origin/${BRANCH} --quiet; then
  25. echo "Updated code is available."
  26. else
  27. echo "No updates available."
  28. fi
  29. exit 0
  30. ;;
  31. esac
  32. echo -e "\e[32mChecking for newer update script...\e[0m"
  33. SHA1_1=$(sha1sum update.sh)
  34. git fetch origin ${BRANCH}
  35. git checkout origin/${BRANCH} update.sh
  36. SHA1_2=$(sha1sum update.sh)
  37. if [[ ${SHA1_1} != ${SHA1_2} ]]; then
  38. echo "update.sh changed, please run this script again, exiting."
  39. chmod +x update.sh
  40. exit 0
  41. fi
  42. if [[ -f mailcow.conf ]]; then
  43. source mailcow.conf
  44. else
  45. echo -e "\e[31mNo mailcow.conf - is mailcow installed?\e[0m"
  46. exit 1
  47. fi
  48. read -r -p "Are you sure you want to update mailcow: dockerized? All containers will be stopped. [y/N] " response
  49. if [[ ! "$response" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
  50. echo "OK, exiting."
  51. exit 0
  52. fi
  53. echo -e "Stopping mailcow... "
  54. sleep 2
  55. docker-compose down
  56. # Silently fixing remote url from andryyy to mailcow
  57. git remote set-url origin https://github.com/mailcow/mailcow-dockerized
  58. echo -e "\e[32mCommitting current status...\e[0m"
  59. git add -u
  60. git commit -am "Before update on ${DATE}" > /dev/null
  61. echo -e "\e[32mFetching updated code from remote...\e[0m"
  62. git fetch origin ${BRANCH}
  63. echo -e "\e[32mMerging local with remote code (recursive, options: \"theirs\", \"patience\"...\e[0m"
  64. git merge -Xtheirs -Xpatience -m "After update on ${DATE}"
  65. # Need to use a variable to not pass return codes of if checks
  66. MERGE_RETURN=$?
  67. if [[ ${MERGE_RETURN} == 128 ]]; then
  68. 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"
  69. exit 1
  70. elif [[ ${MERGE_RETURN} == 1 ]]; then
  71. echo -e "\e[93mPotenial conflict, trying to fix...\e[0m"
  72. git status --porcelain | grep -E "UD|DU" | awk '{print $2}' | xargs rm -v
  73. git add -A
  74. git commit -m "After update on ${DATE}" > /dev/null
  75. git checkout .
  76. echo -e "\e[32mRemoved and recreated files if necessary.\e[0m"
  77. elif [[ ${MERGE_RETURN} != 0 ]]; then
  78. echo -e "\e[31m\nOh no, something went wrong. Please check the error message above.\e[0m"
  79. echo
  80. echo "Run docker-compose up -d to restart your stack without updates or try again after fixing the mentioned errors."
  81. exit 1
  82. fi
  83. echo -e "\e[32mFetching new images, if any...\e[0m"
  84. sleep 2
  85. docker-compose pull --parallel
  86. # Fix missing SSL, does not overwrite existing files
  87. [[ ! -d data/assets/ssl ]] && mkdir -p data/assets/ssl
  88. cp -n data/assets/ssl-example/*.pem data/assets/ssl/
  89. echo -e "\e[32mFetching new docker-compose version...\e[0m"
  90. sleep 2
  91. curl -L https://github.com/docker/compose/releases/download/$(curl -Ls https://www.servercow.de/docker-compose/latest.php)/docker-compose-$(uname -s)-$(uname -m) > $(which docker-compose)
  92. chmod +x $(which docker-compose)
  93. echo -e "\e[32mStarting mailcow...\e[0m"
  94. sleep 2
  95. docker-compose up -d --remove-orphans
  96. #echo -e "\e[32mCleaning up Docker objects...\e[0m"
  97. if docker images -f "dangling=true" | grep ago --quiet; then
  98. docker rmi -f $(docker images -f "dangling=true" -q)
  99. docker volume rm $(docker volume ls -qf dangling=true)
  100. fi
  101. echo "In case you encounter any problem, hard-reset to a state before updating mailcow:"
  102. echo
  103. git reflog --color=always | grep "Before update on "
  104. echo
  105. echo "Use \"git reset --hard hash-on-the-left\" and run docker-compose up -d afterwards."