Update install.md
Dieser Commit ist enthalten in:
Ursprung
9842d433b2
Commit
0d01c90a4b
1 geänderte Dateien mit 9 neuen und 2 gelöschten Zeilen
|
@ -7,6 +7,9 @@ Quick installation for most operation systems:
|
||||||
- Docker
|
- Docker
|
||||||
```
|
```
|
||||||
curl -sSL https://get.docker.com/ | CHANNEL=stable sh
|
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
|
- 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.
|
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.
|
**3\.** Generate a configuration file. Use a FQDN (`host.domain.tld`) as hostname when asked.
|
||||||
|
|
Laden …
In neuem Issue referenzieren