mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-25 01:11:54 +08:00
Use sane defaults in the example docker-compose
This commit is contained in:
parent
ed9160a258
commit
b4611d344c
1 changed files with 6 additions and 3 deletions
|
@ -1,9 +1,8 @@
|
|||
version: "3.7"
|
||||
services:
|
||||
wildduck:
|
||||
container_name: wildduck
|
||||
restart: always
|
||||
build: .
|
||||
image: nodemailer/wildduck
|
||||
ports:
|
||||
- "8080:8080"
|
||||
- "143:143"
|
||||
|
@ -14,7 +13,11 @@ services:
|
|||
- redis
|
||||
- mongo
|
||||
environment:
|
||||
CMD_ARGS: "--dbs.mongo=mongodb://mongo:27017/ --dbs.redis=redis://redis:6379/3 --api.host=0.0.0.0"
|
||||
CMD_ARGS:
|
||||
--dbs.mongo=mongodb://mongo:27017/wildduck
|
||||
--dbs.redis=redis://redis:6379/3
|
||||
--api.host=0.0.0.0
|
||||
--api.accessToken=PLEASE_CHANGE_ME
|
||||
redis:
|
||||
image: redis:alpine
|
||||
restart: always
|
||||
|
|
Loading…
Reference in a new issue