mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
exchanging .dist
files
This commit is contained in:
parent
54dc528880
commit
34ad0500db
|
@ -10,7 +10,7 @@ insert_final_newline = true
|
||||||
indent_style = space
|
indent_style = space
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
[*.{yaml,yml,yml.dist,yml.tmpl}]
|
[*.{yaml,yml}]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
||||||
|
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -3,10 +3,7 @@
|
||||||
#################################################
|
#################################################
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.env
|
|
||||||
|
|
||||||
config/opendkim/
|
config/opendkim/
|
||||||
docker-compose.yml
|
|
||||||
|
|
||||||
#################################################
|
#################################################
|
||||||
### IDEs ######################################
|
### IDEs ######################################
|
||||||
|
|
10
README.md
10
README.md
|
@ -90,10 +90,12 @@ Minimum:
|
||||||
Download the `docker-compose.yml`, `.env`, `env-mailserver` and the `setup.sh` files:
|
Download the `docker-compose.yml`, `.env`, `env-mailserver` and the `setup.sh` files:
|
||||||
|
|
||||||
``` BASH
|
``` BASH
|
||||||
curl -o setup.sh https://raw.githubusercontent.com/tomav/docker-mailserver/master/setup.sh && chmod a+x ./setup.sh
|
wget https://raw.githubusercontent.com/tomav/docker-mailserver/master/setup.sh
|
||||||
curl -o docker-compose.yml https://raw.githubusercontent.com/tomav/docker-mailserver/master/docker-compose.yml.dist
|
wget https://raw.githubusercontent.com/tomav/docker-mailserver/master/docker-compose.yml
|
||||||
curl -o .env https://raw.githubusercontent.com/tomav/docker-mailserver/master/.env.dist
|
wget https://raw.githubusercontent.com/tomav/docker-mailserver/master/.env
|
||||||
curl -o env-mailserver https://raw.githubusercontent.com/tomav/docker-mailserver/master/env-mailserver.dist
|
wget https://raw.githubusercontent.com/tomav/docker-mailserver/master/env-mailserver
|
||||||
|
|
||||||
|
chmod a+x ./setup.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
### Create a docker-compose environment
|
### Create a docker-compose environment
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version: '3.7'
|
version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
mail:
|
mail:
|
Loading…
Reference in a new issue