-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (51 loc) · 1.17 KB
/
docker-compose.yml
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
45
46
47
48
49
50
51
services:
db:
build:
context: ./db_schema
image: "koala/lada_db"
volumes:
- ./db_schema:/opt/lada_sql/
server:
build:
context: ./
image: "koala/lada_wildfly"
depends_on:
- db
volumes:
- ./:/usr/src/lada-server
ports:
- 8080 # direct access to interfaces
- 9990 # Wildfly management console
- 8787 # Remote debugging of server code
- 5005 # Remote debugging of test code
printer:
image: "koala/lada_print_templates"
volumes:
- ../lada_print_templates/:/usr/local/tomcat/webapps/ROOT/print-apps
client: # Assumes client checkout in ../client
build:
context: ../client
target: development
depends_on:
server:
condition: service_healthy
printer:
condition: service_started
required: false
volumes:
- ../client:/usr/local/lada
ports:
- 80-86
lada-ldap:
build:
context: ./shibboleth
dockerfile: ./ldap.Dockerfile
image: "koala/lada_ldap"
lada-idp:
build:
context: ./shibboleth
dockerfile: ./shibboleth.Dockerfile
depends_on:
- lada-ldap
ports:
- 28443:8443