-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (44 loc) · 1.14 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
services:
ldap:
build: tests/openldap_container/
environment:
- DEBUG_LEVEL=1
- DOMAIN=test.nprod.net
- ORGANIZATION="Test Instance LDAP"
- PASSWORD=1234567890
volumes:
- ./tests/openldap_container/data:/var/restore
restart: always
mailserver:
image: maildev/maildev:2.0.0-beta3
environment:
- MAILDEV_INCOMING_USER=emailuser
- MAILDEV_INCOMING_PASS=emailpassword
ports:
- 1080:1080
service:
build: .
environment:
- LDAP_HOST=ldap
- LDAP_PORT=389
- SECRET_KEY=foo
- WTF_CSRF_SECRET_KEY=bar
- MANAGER_USER=admin
- MANAGER_PW=1234567890
- MANAGER_PATH=dc=test,dc=nprod,dc=net
- DC=dc=test,dc=nprod,dc=net
- OU=ou=Users,dc=test,dc=nprod,dc=net
- EMAIL_SERVER=mailserver
- EMAIL_LOGIN=emailuser
- EMAIL_PASSWORD=emailpassword
- EMAIL_PORT=1025
- EMAIL_NAME=LDAP Test instance
- EMAIL_TLS=False
- SITE_NAME=LDAP Test instance
- SITE_URL=http://127.0.0.1:8080
- DEBUG=True
- PORT=8080
- HOST=0.0.0.0
ports:
- 8080:8080