-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
39 lines (37 loc) · 1.06 KB
/
docker-compose-dev.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
version: "3.8"
x-logging: &local-logging
driver: "local"
options:
max-size: "20m"
max-file: "50"
services:
astm-http-bridge:
container_name: astm-http-bridge
build:
context: .
dockerfile: ./Dockerfile.dev
image: astm-http-bridge
ports:
- "8442:8443"
- "12000:12001"
- "8000:8000"
volumes:
- ./configuration.yml:/app/configuration.yml
- /home/caleb/projects/UW-Projects/OpenELIS-Global-2/dev/https/int.caleb.dev.openelisci.org.truststore.p12:/etc/truststore
extra_hosts:
- "host.openelis.org:10.0.0.101"
environment:
SPRING_PROFILE: dev
LOGGING_LEVEL_ORG_ITECH: DEBUG
JAVA_OPTS:
"-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:8000
-Djavax.net.ssl.trustStore=/etc/truststore
-Djavax.net.ssl.trustStorePassword=testtest
-Djavax.net.ssl.trustStoreType=PKCS12"
logging: *local-logging
healthcheck:
test: ["CMD", "/app/healthcheck.sh"]
timeout: 10s
interval: 30s
retries: 3
start_period: 2m