Fixed typos
This commit is contained in:
parent
2b8bf1b80d
commit
c311ef0b5a
13
README.md
13
README.md
|
@ -34,22 +34,22 @@ Before you open an issue, please have a look this `README`, the [FAQ](https://gi
|
||||||
|
|
||||||
├── config # User: personal configurations
|
├── config # User: personal configurations
|
||||||
├── docker-compose.yml.dist # User: 'docker-compose.yml' example
|
├── docker-compose.yml.dist # User: 'docker-compose.yml' example
|
||||||
├── target # Developers: default server configurations
|
├── target # Developer: default server configurations
|
||||||
└── test # Developers: integration tests
|
└── test # Developer: integration tests
|
||||||
|
|
||||||
## Basic usage
|
## Basic usage
|
||||||
|
|
||||||
# get v2 image
|
# get v2 image
|
||||||
docker pull tvial/docker-mailserver:2
|
docker pull tvial/docker-mailserver:v2
|
||||||
|
|
||||||
# create a "docker-compose.yml" file containing:
|
# create a "docker-compose.yml" file containing:
|
||||||
mail:
|
mail:
|
||||||
image: tvial/docker-mailserver:2
|
image: tvial/docker-mailserver:v2
|
||||||
hostname: mail
|
hostname: mail
|
||||||
domainname: domain.com
|
domainname: domain.com
|
||||||
# your FQDN will be 'mail.domain.com'
|
# your FQDN will be 'mail.domain.com'
|
||||||
ports:
|
ports:
|
||||||
- "25:25"
|
- "25:v25"
|
||||||
- "143:143"
|
- "143:143"
|
||||||
- "587:587"
|
- "587:587"
|
||||||
- "993:993"
|
- "993:993"
|
||||||
|
@ -57,6 +57,7 @@ Before you open an issue, please have a look this `README`, the [FAQ](https://gi
|
||||||
- ./config/:/tmp/docker-mailserver/
|
- ./config/:/tmp/docker-mailserver/
|
||||||
|
|
||||||
# Create your first mail account
|
# Create your first mail account
|
||||||
|
# Don't forget to adapt MAIL_USER and MAIL_PASS to your needs
|
||||||
mkdir -p config
|
mkdir -p config
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
-e MAIL_USER=username@domain.tld \
|
-e MAIL_USER=username@domain.tld \
|
||||||
|
@ -134,7 +135,7 @@ Example:
|
||||||
* *empty* (default) => fail2ban service disabled
|
* *empty* (default) => fail2ban service disabled
|
||||||
* 1 => Enables fail2ban service
|
* 1 => Enables fail2ban service
|
||||||
|
|
||||||
Please read [how the container starts](https://github.com/tomav/docker-mailserver/blob/master/start-mailserver.sh) to understand what's expected.
|
Please check [how the container starts](https://github.com/tomav/docker-mailserver/blob/v2/start-mailserver.sh) to understand what's expected.
|
||||||
|
|
||||||
## SSL
|
## SSL
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue