forked from OpenBfS/lada-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
35 lines (35 loc) · 876 Bytes
/
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
version: "3.5"
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/gis_print_templates"
volumes:
# Assumes checkout in ../gis_print_templates/:
- ../gis_print_templates/:/usr/local/tomcat/webapps/bfs-printservice/print-apps
client:
image: "koala/lada_client"
depends_on:
- server
- printer
volumes:
- ../client:/usr/local/lada # Assumes client checkout in ../client
ports:
- 80-86