-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
58 lines (53 loc) · 1.43 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
version: "3.7"
services:
mysql:
build: ./mysql
# image: ncidockerhub.nci.nih.gov/lexevs/lexevs-nci-mysql:5.7.34
image: ${IMAGE_MYSQL}
volumes:
- ${PWD}/build/lexevs:/lexevs
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
LOAD_LEXEVS_DB: ${LOAD_LEXEVS_DB}
# lexevs-test-load:
# image: ncidockerhub.nci.nih.gov/lexevs/lexevs-test-load:6.5.2
# volumes:
# - /Users/endlecm/git/lexevs-system-test/build/lexevs:/lexevs
uriresolver:
# image: ncidockerhub.nci.nih.gov/lexevs/lexevs-uriresolver:6.5.2
image: ${IMAGE_URIRESOLVER}
build: ./uriresolver
ports:
- 8001:8080
# volumes:
# - /Users/endlecm/git/lexevs-system-test/build/artifacts:/artifacts
depends_on:
- mysql
lexevs-remote:
# image: ncidockerhub.nci.nih.gov/lexevs/lexevs-remote:6.5.2
image: ${IMAGE_REMOTE_API}
ports:
- 8000:8080
volumes:
- ${PWD}/build/lexevs:/lexevs
links:
- mysql:mysql
depends_on:
- mysql
# command: ["/wait-for-it.sh", "mysql:3306", "--", "/usr/bin/sh", "/run.sh"]
lexevs-cts2:
# image: ncidockerhub.nci.nih.gov/lexevs/lexevs-cts2:6.5.2
image: ${IMAGE_CTS2}
build: ./lexevs-cts2
ports:
- 8002:8080
volumes:
- ${PWD}/build/lexevs:/lexevs
environment:
USER_HOME: ${USER_HOME}
links:
- mysql:mysql
- uriresolver:uriresolver
depends_on:
- mysql
- uriresolver