From 4b5d1e1b8e18b73a12c45eb8cf033fea2c9e1231 Mon Sep 17 00:00:00 2001 From: Noah Date: Sat, 19 Sep 2020 03:05:08 -0700 Subject: [PATCH 1/3] Update i_u_m_install.md Clarifies getting latest docker compose. --- docs/i_u_m_install.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/i_u_m_install.md b/docs/i_u_m_install.md index b4166bde9..a9d895ff5 100644 --- a/docs/i_u_m_install.md +++ b/docs/i_u_m_install.md @@ -18,8 +18,7 @@ systemctl start docker.service ``` - Docker-Compose -**Use the latest docker-compose available** if you don't want to run the commands below. -Do **not** use deprecated versions that come with your distro. +**Use the latest docker-compose available**. Do **not** use deprecated versions that come with your distro. Either be sure to get the latest on your own, or use the command below which should do the same. ``` 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) > /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose From 61d475b66105eb298aa9f1c88c6368bb6404fe2b Mon Sep 17 00:00:00 2001 From: Noah Date: Sat, 19 Sep 2020 10:02:41 -0700 Subject: [PATCH 2/3] Update i_u_m_install.md Uses the other important message markup, tries for brevity and clarity. --- docs/i_u_m_install.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/i_u_m_install.md b/docs/i_u_m_install.md index a9d895ff5..61e2a3447 100644 --- a/docs/i_u_m_install.md +++ b/docs/i_u_m_install.md @@ -18,7 +18,10 @@ systemctl start docker.service ``` - Docker-Compose -**Use the latest docker-compose available**. Do **not** use deprecated versions that come with your distro. Either be sure to get the latest on your own, or use the command below which should do the same. + +!!! warning + **Mailcow requires the latest version,** so use the commands below to install `docker-compose`. Package managers (e.g. `apt`, `yum`) **likely won't** give you the latest. _Note: This downloads from the official Docker Github repo, and is a safe method._ + ``` 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) > /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose From ce5e1b0d47f554c440685b5dfad8399cc5eb8865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Peters?= Date: Sat, 19 Sep 2020 21:31:46 +0200 Subject: [PATCH 3/3] Update i_u_m_install.md --- docs/i_u_m_install.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/i_u_m_install.md b/docs/i_u_m_install.md index 61e2a3447..97bea2a66 100644 --- a/docs/i_u_m_install.md +++ b/docs/i_u_m_install.md @@ -20,7 +20,8 @@ systemctl start docker.service - Docker-Compose !!! warning - **Mailcow requires the latest version,** so use the commands below to install `docker-compose`. Package managers (e.g. `apt`, `yum`) **likely won't** give you the latest. _Note: This downloads from the official Docker Github repo, and is a safe method._ + **mailcow requires the latest version of docker-compose.** It is highly recommended to use the commands below to install `docker-compose`. Package managers (e.g. `apt`, `yum`) **likely won't** give you the latest version. + _Note: This command downloads docker-compose from the official Docker Github repository and is a safe method. The snippet will determine the latest supported version by mailcow. In almost all cases this is the latest version available (exceptions are broken releases or major changes not yet supported by mailcow)._ ``` 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) > /usr/local/bin/docker-compose