-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
101 lines (101 loc) · 2.7 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
services:
shogun-print:
extends:
file: ./common-services.yml
service: shogun-print
shogun-geoserver:
extends:
file: ./common-services.yml
service: shogun-geoserver
build:
context: ./shogun-geoserver
args:
USER_UID: ${UID}
USER_GID: ${GID}
USER_NAME: ${UNAME}
shogun-postgis:
extends:
file: ./common-services.yml
service: shogun-postgis
ports:
- "5555:5432"
shogun-keycloak:
extends:
file: ./common-services.yml
service: shogun-keycloak
shogun-nginx:
extends:
file: ./common-services.yml
service: shogun-nginx
volumes:
- ./shogun-nginx/ssl/private/localhost.crt:/etc/nginx/ssl/private/localhost.crt
- ./shogun-nginx/ssl/private/localhost.key:/etc/nginx/ssl/private/localhost.key
- ./shogun-nginx/dev/default.conf:/etc/nginx/templates/default.conf.template
shogun-client:
extends:
file: ./common-services.yml
service: shogun-client
build:
context: ${SHOGUN_CLIENT_DIR}
dockerfile: Dockerfile.dev
volumes:
- ${SHOGUN_CLIENT_DIR}:/app
shogun-client-plugins:
extends:
file: ./common-services.yml
service: shogun-client-plugins
build:
context: ${SHOGUN_CLIENT_PLUGINS_DIR}
dockerfile: Dockerfile.dev
volumes:
- ${SHOGUN_CLIENT_PLUGINS_DIR}:/app
shogun-admin:
extends:
file: ./common-services.yml
service: shogun-admin
build:
context: ${SHOGUN_ADMIN_DIR}
dockerfile: Dockerfile.dev
volumes:
- ${SHOGUN_ADMIN_DIR}:/app
shogun-boot:
extends:
file: ./common-services.yml
service: shogun-boot
build:
context: ${SHOGUN_DIR}/shogun-boot/
ports:
- "4711:4711"
- "9010:9010"
# Enable if you want to make use of the external application and log configurations
# environment:
# JAVA_TOOL_OPTIONS: "-Dspring.config.location=/config/application.yml -Dlog4j2.configurationFile=/config/log4j2.yml"
volumes:
- ${SHOGUN_DIR}/:/shogun/
- ~/.m2:/root/.m2
# shogun-gs-interceptor:
# extends:
# file: ./common-services.yml
# service: shogun-gs-interceptor
# build:
# context: ${SHOGUN_DIR}/shogun-gs-interceptor/
# ports:
# - "4712:4711"
# - "9011:9010"
# volumes:
# - ${SHOGUN_DIR}/:/shogun/
# - ~/.m2:/root/.m2
shogun-solr:
extends:
file: ./common-services.yml
service: shogun-solr
ports:
- "8983:8983"
shogun-gis-client-docs:
extends:
file: ./common-services.yml
service: shogun-gis-client-docs
shogun-admin-client-docs:
extends:
file: ./common-services.yml
service: shogun-admin-client-docs