From 493bc65e3c20c8a9c7f5ff198a148f123108fb05 Mon Sep 17 00:00:00 2001 From: broedli Date: Thu, 2 Mar 2017 21:34:23 +0100 Subject: [PATCH] Update install.md --- docs/install.md | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/docs/install.md b/docs/install.md index a188c862..703b9f87 100644 --- a/docs/install.md +++ b/docs/install.md @@ -1,34 +1,33 @@ # Install mailcow 1. You need Docker. - -Most systems can install Docker by running `wget -qO- https://get.docker.com/ | sh`. + Most systems can install Docker by running `wget -qO- https://get.docker.com/ | sh`. 2. You need Docker Compose -Learn [how to install Docker Compose](https://docs.docker.com/compose/install/). + Learn [how to install Docker Compose](https://docs.docker.com/compose/install/). 3. Clone the master branch of the repository -``` -git clone https://github.com/andryyy/mailcow-dockerized && cd mailcow-dockerized -``` + ``` + git clone https://github.com/andryyy/mailcow-dockerized && cd mailcow-dockerized + ``` 4. Generate a configuration file. Use a FQDN (`host.domain.tld`) as hostname when asked. -``` -./generate_config.sh -``` + ``` + ./generate_config.sh + ``` 5. Change configuration if you want or need to. -``` -nano mailcow.conf -``` + ``` + nano mailcow.conf + ``` -If you plan to use a reverse proxy, you can, for example, bind HTTPS to 127.0.0.1 on port 8443 and HTTP to 127.0.0.1 on port 8080. + If you plan to use a reverse proxy, you can, for example, bind HTTPS to 127.0.0.1 on port 8443 and HTTP to 127.0.0.1 on port 8080. 6. Run the composer file. -``` -docker-compose up -d -``` + ``` + docker-compose up -d + ``` Done!