NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
PHP 49% JavaScript 35% HTML 9% CSS 4% Shell 2% Python 1% Lua 0% Perl 0% Ruby 0% SCSS 0%
Create file Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git

Trace

helper-scripts/update_compose.sh

Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.

update_compose.sh on main
Author Date Commit Line Code
DerLinkman almost 4 years ago 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
1
#!/bin/bash
Open commit View diff
1 #!/bin/bash
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
2
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
Open commit View diff
2 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
3
Open commit View diff
3
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
4
source ${SCRIPT_DIR}/../mailcow.conf
Open commit View diff
4 source ${SCRIPT_DIR}/../mailcow.conf
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
5
Open commit View diff
5
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
6
if [ "${DOCKER_COMPOSE_VERSION}" == "standalone" ]; then
Open commit View diff
6 if [ "${DOCKER_COMPOSE_VERSION}" == "standalone" ]; then
knuth over 3 years ago 65585e2

use GitHub redirect for newest version

Full commit hash
65585e286d6e7b3ce65cc854a5ed291ddfcd35e8
Author
knuth <[email protected]>
Date
over 3 years ago
Selected line
7
LATEST_COMPOSE=$(curl -Ls -w %{url_effective} -o /dev/null https://github.com/docker/compose/releases/latest) # redirect to latest release
Open commit View diff
7 LATEST_COMPOSE=$(curl -Ls -w %{url_effective} -o /dev/null https://github.com/docker/compose/releases/latest) # redirect to latest release
same change 65585e2

use GitHub redirect for newest version

Full commit hash
65585e286d6e7b3ce65cc854a5ed291ddfcd35e8
Author
knuth <[email protected]>
Date
over 3 years ago
Selected line
8
LATEST_COMPOSE=${LATEST_COMPOSE##*/v} #get the latest version from the redirect, excluding the "v" prefix
Open commit View diff
8 LATEST_COMPOSE=${LATEST_COMPOSE##*/v} #get the latest version from the redirect, excluding the "v" prefix
DerLinkman almost 4 years ago 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
9
COMPOSE_VERSION=$(docker-compose version --short)
Open commit View diff
9 COMPOSE_VERSION=$(docker-compose version --short)
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
10
if [[ "$LATEST_COMPOSE" != "$COMPOSE_VERSION" ]]; then
Open commit View diff
10 if [[ "$LATEST_COMPOSE" != "$COMPOSE_VERSION" ]]; then
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
11
  echo -e "\e[33mA new docker-compose Version is available: $LATEST_COMPOSE\e[0m"
Open commit View diff
11 echo -e "\e[33mA new docker-compose Version is available: $LATEST_COMPOSE\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
12
  echo -e "\e[33mYour Version is: $COMPOSE_VERSION\e[0m"
Open commit View diff
12 echo -e "\e[33mYour Version is: $COMPOSE_VERSION\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
13
else
Open commit View diff
13 else
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
14
  echo -e "\e[32mYour docker-compose Version is up to date! Not updating it...\e[0m"
Open commit View diff
14 echo -e "\e[32mYour docker-compose Version is up to date! Not updating it...\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
15
  exit 0 
Open commit View diff
15 exit 0
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
16
fi
Open commit View diff
16 fi
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
17
read -r -p "Do you want to update your docker-compose Version? It will automatic upgrade your docker-compose installation (recommended)? [y/N] " updatecomposeresponse 
Open commit View diff
17 read -r -p "Do you want to update your docker-compose Version? It will automatic upgrade your docker-compose installation (recommended)? [y/N] " updatecomposeresponse
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
18
    if [[ ! "${updatecomposeresponse}" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
Open commit View diff
18 if [[ ! "${updatecomposeresponse}" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
19
      echo "OK, not updating docker-compose."
Open commit View diff
19 echo "OK, not updating docker-compose."
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
20
      exit 0
Open commit View diff
20 exit 0
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
21
    fi 
Open commit View diff
21 fi
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
22
echo -e "\e[32mFetching new docker-compose (standalone) version...\e[0m"
Open commit View diff
22 echo -e "\e[32mFetching new docker-compose (standalone) version...\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
23
echo -e "\e[32mTrying to determine GLIBC version...\e[0m"
Open commit View diff
23 echo -e "\e[32mTrying to determine GLIBC version...\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
24
    if ldd --version > /dev/null; then
Open commit View diff
24 if ldd --version > /dev/null; then
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
25
        GLIBC_V=$(ldd --version | grep -E '(GLIBC|GNU libc)' | rev | cut -d ' ' -f1 | rev | cut -d '.' -f2)
Open commit View diff
25 GLIBC_V=$(ldd --version | grep -E '(GLIBC|GNU libc)' | rev | cut -d ' ' -f1 | rev | cut -d '.' -f2)
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
26
        if [ ! -z "${GLIBC_V}" ] && [ ${GLIBC_V} -gt 27 ]; then
Open commit View diff
26 if [ ! -z "${GLIBC_V}" ] && [ ${GLIBC_V} -gt 27 ]; then
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
27
        DC_DL_SUFFIX=
Open commit View diff
27 DC_DL_SUFFIX=
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
28
        else
Open commit View diff
28 else
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
29
        DC_DL_SUFFIX=legacy
Open commit View diff
29 DC_DL_SUFFIX=legacy
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
30
        fi
Open commit View diff
30 fi
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
31
    else
Open commit View diff
31 else
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
32
        DC_DL_SUFFIX=legacy
Open commit View diff
32 DC_DL_SUFFIX=legacy
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
33
    fi
Open commit View diff
33 fi
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
34
    sleep 1
Open commit View diff
34 sleep 1
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
35
    if [[ $(command -v pip 2>&1) && $(pip list --local 2>&1 | grep -v DEPRECATION | grep -c docker-compose) == 1 || $(command -v pip3 2>&1) && $(pip3 list --local 2>&1 | grep -v DEPRECATION | grep -c docker-compose) == 1 ]]; then
Open commit View diff
35 if [[ $(command -v pip 2>&1) && $(pip list --local 2>&1 | grep -v DEPRECATION | grep -c docker-compose) == 1 || $(command -v pip3 2>&1) && $(pip3 list --local 2>&1 | grep -v DEPRECATION | grep -c docker-compose) == 1 ]]; then
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
36
        echo -e "\e[33mFound a docker-compose Version installed with pip!\e[0m"
Open commit View diff
36 echo -e "\e[33mFound a docker-compose Version installed with pip!\e[0m"
knuth over 3 years ago e5cf35a

fix unicode char

Full commit hash
e5cf35aff89c7c9bce2a94fdff780c3b2cba708d
Author
knuth <[email protected]>
Date
over 3 years ago
Selected line
37
        echo -e "\e[31mPlease uninstall the pip Version of docker-compose since it doesn't support Versions higher than 1.29.2.\e[0m"
Open commit View diff
37 echo -e "\e[31mPlease uninstall the pip Version of docker-compose since it doesn't support Versions higher than 1.29.2.\e[0m"
DerLinkman almost 4 years ago 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
38
        sleep 2
Open commit View diff
38 sleep 2
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
39
        echo -e "\e[33mExiting...\e[0m"
Open commit View diff
39 echo -e "\e[33mExiting...\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
40
        exit 1
Open commit View diff
40 exit 1
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
41
        #prevent breaking a working docker-compose installed with pip
Open commit View diff
41 #prevent breaking a working docker-compose installed with pip
knuth over 3 years ago d98fd74

use GitHub for newest docker-compose release

Full commit hash
d98fd74968277843713d70b0f95ddd252e059d45
Author
knuth <[email protected]>
Date
over 3 years ago
Selected line
42
    elif [[ $(curl -sL -w "%{http_code}" https://github.com/docker/compose/releases/latest -o /dev/null) == "200" ]]; then
Open commit View diff
42 elif [[ $(curl -sL -w "%{http_code}" https://github.com/docker/compose/releases/latest -o /dev/null) == "200" ]]; then
same change d98fd74

use GitHub for newest docker-compose release

Full commit hash
d98fd74968277843713d70b0f95ddd252e059d45
Author
knuth <[email protected]>
Date
over 3 years ago
Selected line
43
        LATEST_COMPOSE=$(curl -Ls -w %{url_effective} -o /dev/null https://github.com/docker/compose/releases/latest) # redirect to latest release
Open commit View diff
43 LATEST_COMPOSE=$(curl -Ls -w %{url_effective} -o /dev/null https://github.com/docker/compose/releases/latest) # redirect to latest release
same change d98fd74

use GitHub for newest docker-compose release

Full commit hash
d98fd74968277843713d70b0f95ddd252e059d45
Author
knuth <[email protected]>
Date
over 3 years ago
Selected line
44
        LATEST_COMPOSE=${LATEST_COMPOSE##*/} #get the latest version from the redirect, inlcuding the "v" prefix
Open commit View diff
44 LATEST_COMPOSE=${LATEST_COMPOSE##*/} #get the latest version from the redirect, inlcuding the "v" prefix
DerLinkman almost 4 years ago 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
45
        COMPOSE_VERSION=$(docker-compose version --short)
Open commit View diff
45 COMPOSE_VERSION=$(docker-compose version --short)
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
46
        if [[ "$LATEST_COMPOSE" != "$COMPOSE_VERSION" ]]; then
Open commit View diff
46 if [[ "$LATEST_COMPOSE" != "$COMPOSE_VERSION" ]]; then
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
47
        COMPOSE_PATH=$(command -v docker-compose)
Open commit View diff
47 COMPOSE_PATH=$(command -v docker-compose)
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
48
        if [[ -w ${COMPOSE_PATH} ]]; then
Open commit View diff
48 if [[ -w ${COMPOSE_PATH} ]]; then
knuth over 3 years ago d98fd74

use GitHub for newest docker-compose release

Full commit hash
d98fd74968277843713d70b0f95ddd252e059d45
Author
knuth <[email protected]>
Date
over 3 years ago
Selected line
49
            curl -#L https://github.com/docker/compose/releases/download/${LATEST_COMPOSE}/docker-compose-$(uname -s)-$(uname -m) > $COMPOSE_PATH
Open commit View diff
49 curl -#L https://github.com/docker/compose/releases/download/${LATEST_COMPOSE}/docker-compose-$(uname -s)-$(uname -m) > $COMPOSE_PATH
DerLinkman almost 4 years ago 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
50
            chmod +x $COMPOSE_PATH
Open commit View diff
50 chmod +x $COMPOSE_PATH
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
51
            echo -e "\e[32mYour Docker Compose (standalone) has been updated to: $LATEST_COMPOSE\e[0m"
Open commit View diff
51 echo -e "\e[32mYour Docker Compose (standalone) has been updated to: $LATEST_COMPOSE\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
52
            exit 0
Open commit View diff
52 exit 0
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
53
        else
Open commit View diff
53 else
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
54
            echo -e "\e[33mWARNING: $COMPOSE_PATH is not writable, but new version $LATEST_COMPOSE is available (installed: $COMPOSE_VERSION)\e[0m"
Open commit View diff
54 echo -e "\e[33mWARNING: $COMPOSE_PATH is not writable, but new version $LATEST_COMPOSE is available (installed: $COMPOSE_VERSION)\e[0m"
Nathaniel Mom over 3 years ago df17e6b

change 'return 1' to 'exit 1'

Full commit hash
df17e6b75e3ba3d6993932eff52e972406e60815
Author
Nathaniel Mom <[email protected]>
Date
over 3 years ago
Selected line
55
            exit 1
Open commit View diff
55 exit 1
DerLinkman almost 4 years ago 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
56
        fi
Open commit View diff
56 fi
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
57
        fi
Open commit View diff
57 fi
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
58
    else
Open commit View diff
58 else
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
59
        echo -e "\e[33mCannot determine latest docker-compose version, skipping...\e[0m"
Open commit View diff
59 echo -e "\e[33mCannot determine latest docker-compose version, skipping...\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
60
        exit 1
Open commit View diff
60 exit 1
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
61
    fi
Open commit View diff
61 fi
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
62
Open commit View diff
62
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
63
elif [ "${DOCKER_COMPOSE_VERSION}" == "native" ]; then
Open commit View diff
63 elif [ "${DOCKER_COMPOSE_VERSION}" == "native" ]; then
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
64
    echo -e "\e[31mYou are using the native Docker Compose Plugin. This Script is for the standalone Docker Compose Version only.\e[0m"
Open commit View diff
64 echo -e "\e[31mYou are using the native Docker Compose Plugin. This Script is for the standalone Docker Compose Version only.\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
65
    sleep 2
Open commit View diff
65 sleep 2
knuth over 3 years ago 7875185

fix unicode char

Full commit hash
7875185e1f30bcb93ed44aec8f4093df49950eb4
Author
knuth <[email protected]>
Date
over 3 years ago
Selected line
66
    echo -e "\e[33mNotice: You'll have to update this Compose Version via your Package Manager manually!\e[0m"
Open commit View diff
66 echo -e "\e[33mNotice: You'll have to update this Compose Version via your Package Manager manually!\e[0m"
DerLinkman almost 4 years ago 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
67
    exit 1
Open commit View diff
67 exit 1
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
68
Open commit View diff
68
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
69
else
Open commit View diff
69 else
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
70
    echo -e "\e[31mCan not read DOCKER_COMPOSE_VERSION variable from mailcow.conf! Is your mailcow up to date? Exiting...\e[0m"
Open commit View diff
70 echo -e "\e[31mCan not read DOCKER_COMPOSE_VERSION variable from mailcow.conf! Is your mailcow up to date? Exiting...\e[0m"
same change 047c4aa

Added seperate update_compose Script + some Improvements

Full commit hash
047c4aa3a02743cd4747bc2826c10dedddab5367
Author
DerLinkman <[email protected]>
Date
almost 4 years ago
Selected line
71
    exit 1
Open commit View diff
71 exit 1
DerLinkman over 3 years ago 4831003

[Compose Updater] Corrected syntax errors

Full commit hash
48310034e5f2fa072788ea17110caecdc1706533
Author
DerLinkman <[email protected]>
Date
over 3 years ago
Selected line
72
fi
Open commit View diff
72 fi