-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-compose.yml
41 lines (32 loc) · 1.04 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
services:
kitodo-app:
extends:
file: kitodo-services.yml
service: kitodo-app
depends_on:
- kitodo-db
- kitodo-es
- kitodo-mq
volumes:
- ${APP_DATA}:/usr/local/kitodo
- ${APP_CONFIG}:/usr/local/tomcat/webapps/kitodo/WEB-INF/classes
- type: bind
source: ${APP_OVERWRITES_DATA}
target: /tmp/kitodo/overwrites/data
- type: bind
source: ./overwrites/app/sql/kitodo_post_init.sql
target: /tmp/kitodo/overwrites/sql/post_init.sql
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
kitodo-db:
extends:
file: kitodo-services.yml
service: kitodo-db
kitodo-es:
extends:
file: kitodo-services.yml
service: kitodo-es
kitodo-mq:
extends:
file: kitodo-services.yml
service: kitodo-mq