1
0
Fork 0

Add test mgr setup

This commit is contained in:
Jan Dittberner 2020-12-22 08:49:18 +01:00
parent 8e7f8c3d46
commit 30ddadd954
14 changed files with 345 additions and 64 deletions

View file

@ -19,6 +19,12 @@ services:
dockerfile: smtp.Dockerfile
volumes:
- maildir:/home/catchall/Maildir
mail:
build:
context: .
dockerfile: mail.Dockerfile
volumes:
- maildir:/home/catchall/Maildir
application:
build:
context: .
@ -46,6 +52,19 @@ services:
- smtp
volumes:
- ./cacert-software:/www
mgr:
build:
context: .
dockerfile: mgr.Dockerfile
env_file:
- ./.env
ports:
- "9443:443"
depends_on:
- db
- mail
volumes:
- ./cacert-mgr:/var/www
volumes:
db: { }