mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
Updated Home (markdown)
This commit is contained in:
parent
9577c05753
commit
ba01741d8e
|
@ -1,4 +1,58 @@
|
|||
## Usage
|
||||
|
||||
#### Get v2 image
|
||||
|
||||
docker pull tvial/docker-mailserver:v2
|
||||
|
||||
#### Create a `docker-compose.yml`
|
||||
|
||||
**[Please read the FAQ](https://github.com/tomav/docker-mailserver/wiki/FAQ)**
|
||||
Adapt this file with your FQDN.
|
||||
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
mail:
|
||||
image: tvial/docker-mailserver:testing
|
||||
# build: .
|
||||
hostname: mail
|
||||
domainname: domain.com
|
||||
container_name: mail
|
||||
volumes:
|
||||
- maildata:/var/mail
|
||||
ports:
|
||||
- "25:25"
|
||||
- "143:143"
|
||||
- "587:587"
|
||||
- "993:993"
|
||||
volumes:
|
||||
- ./config/:/tmp/docker-mailserver/
|
||||
- ./opendkim/:/tmp/docker-mailserver/opendkim/
|
||||
|
||||
volumes:
|
||||
maildata:
|
||||
driver: local
|
||||
|
||||
#### Create your mail accounts
|
||||
|
||||
Don't forget to adapt MAIL_USER and MAIL_PASS to your needs
|
||||
|
||||
mkdir -p config
|
||||
docker run --rm \
|
||||
-e MAIL_USER=user1@domain.tld \
|
||||
-e MAIL_PASS=mypassword \
|
||||
-ti tvial/docker-mailserver:v2 \
|
||||
/bin/sh -c 'echo "$MAIL_USER|$(doveadm pw -s CRAM-MD5 -u $MAIL_USER -p $MAIL_PASS)"' >> config/postfix-accounts.cf
|
||||
|
||||
#### Generate DKIM keys
|
||||
|
||||
docker run --rm \
|
||||
-v "$(pwd)/config":/tmp/docker-mailserver \
|
||||
-ti tvial/docker-mailserver:v2 generate-dkim-config
|
||||
|
||||
Now the keys are generated, you can configure your DNS server by just pasting the content of `config/opedkim/keys/domain.tld/mail.txt` in your `domain.tld.hosts` zone.
|
||||
|
||||
#### Start the container
|
||||
|
||||
docker-compose up -d mail
|
||||
|
||||
You're done!
|
||||
|
|
Loading…
Reference in a new issue