From 0d01c90a4b28b69f3b6cef5b1d7f60bf2865bbeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Peters?= Date: Wed, 28 Feb 2018 20:33:36 +0100 Subject: [PATCH] Update install.md --- docs/install.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/install.md b/docs/install.md index a1d901daf..8e9fd4d6e 100644 --- a/docs/install.md +++ b/docs/install.md @@ -7,6 +7,9 @@ Quick installation for most operation systems: - Docker ``` curl -sSL https://get.docker.com/ | CHANNEL=stable sh +# After the installation process is finished, you may need to enable the service and make sure it is started (e.g. CentOS 7) +systemctl enable docker.service +systemctl start docker.service ``` - Docker-Compose @@ -17,9 +20,13 @@ chmod +x /usr/local/bin/docker-compose Please use the latest Docker engine available and do not use the engine that ships with your distros repository. -**2\.** Clone the master branch of the repository +**2\.** Clone the master branch of the repository, make sure your umask equals 0022. ``` -git clone https://github.com/mailcow/mailcow-dockerized && cd mailcow-dockerized +# umask +0022 +# cd /opt +# git clone https://github.com/mailcow/mailcow-dockerized +# cd mailcow-dockerized ``` **3\.** Generate a configuration file. Use a FQDN (`host.domain.tld`) as hostname when asked.