Newer
Older
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
45
46
47
48
49
50
ports:
- 80:80
- 443:443
- 3306:3306
# Uncomment the following line if you want to access the Solr server
#- 8080:8080
volumes:
- ./:/usr/local/vufind2:z
- db-data:/var/lib/mysql:z
networks:
- default
environment:
# Uncomment the following lines to configure Shibboleth
#- SHIB_SP_ENTITY_ID=https://hmt-eww.finc.info/shibboleth
#- SHIB_IDP_ENTITY_ID=https://shib02.hmt-leipzig.de/idp/shibboleth
#- SHIB_HOSTNAME=https://141.39.229.5:443
- VUFIND_SOLR=remote
- VUFIND_HTTPD_CONF=local/dev/httpd-vufind.conf
- SMTP_HOST=smtp
- SMTP_NAME=vufind3
- SMTP_PORT=25
depends_on:
- smtp
smtp:
image: docker.io/useltmann/mailcollect:latest
ports:
- 143:143
- 25:25
volumes:
- mail-data:/home/dev/Maildir:z
# Map a folder to Maildir if you do not want to access the smtp container via
# email client (don't forget to comment out above volumes definition).
#- "~/dockershare/Maildir:/home/dev/Maildir:z"
volumes:
db-data: {}
mail-data: {}
networks:
default:
driver: bridge
ipam:
driver: default
config:
- subnet: 10.2.0.0/16
gateway: 10.2.0.1