mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-03-01 10:24:40 +08:00
Add section in README about docker image
This commit is contained in:
parent
9c1530307b
commit
e4e4208862
1 changed files with 25 additions and 0 deletions
25
README.md
25
README.md
|
@ -96,6 +96,31 @@ See [API Docs](https://api.wildduck.email/#api-Users-PostUser) for details about
|
||||||
|
|
||||||
Any IMAP or POP3 client will do. Use the credentials from step 4\. to log in.
|
Any IMAP or POP3 client will do. Use the credentials from step 4\. to log in.
|
||||||
|
|
||||||
|
### Docker Install
|
||||||
|
The easiest way to setup wildduck with a docker image is given below, for more documentation about configuration options in the docker image, refer to
|
||||||
|
the [wiki page on the Docker](https://github.com/nodemailer/wildduck/wiki/Docker).
|
||||||
|
|
||||||
|
|
||||||
|
A docker image built using the [Dockerfile](./Dockerfile) in the repo is also available
|
||||||
|
|
||||||
|
To pull the latest pre-built image of wildduck:
|
||||||
|
|
||||||
|
```
|
||||||
|
docker pull nodemailer/wildduck
|
||||||
|
```
|
||||||
|
|
||||||
|
It is also possible to pull a specific version of wildduck by specifying the version as the image tag.
|
||||||
|
(example, for version 1.20):
|
||||||
|
```
|
||||||
|
docker pull nodemailer/wildduck:1.20
|
||||||
|
|
||||||
|
```
|
||||||
|
To run the docker image using the default config (already inside the image), and `mongodb` and `redis` from the host machine, use:
|
||||||
|
```
|
||||||
|
docker run --network=host nodemailer/wildduck
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Goals of the Project
|
## Goals of the Project
|
||||||
|
|
||||||
1. Build a scalable and distributed IMAP/POP3 server that uses clustered database instead of single machine file system as mail store
|
1. Build a scalable and distributed IMAP/POP3 server that uses clustered database instead of single machine file system as mail store
|
||||||
|
|
Loading…
Reference in a new issue