-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.cce.yml
62 lines (57 loc) · 1.32 KB
/
docker-compose.cce.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
version: "2"
services:
cce:
image: openlmis/cce:${OL_CCE_VERSION}
mem_limit: 1024m
env_file: settings.env
environment:
JAVA_OPTS: '-Xmx1024m -Dlogging.config=/logback.xml'
volumes:
- './logback.xml:/logback.xml'
depends_on: [log]
command: ["/wait-for-postgres.sh", "/run.sh"]
notification:
image: openlmis/notification:${OL_NOTIFICATION_VERSION}
mem_limit: 512m
env_file: settings.env
environment:
JAVA_OPTS: '-Xmx512m -Dlogging.config=/logback.xml'
volumes:
- './logback.xml:/logback.xml'
depends_on: [log]
command: ["/wait-for-postgres.sh", "/run.sh"]
contract_tests:
mem_limit: 768m
image: openlmis/dev:${DOCKER_DEV_IMAGE_VERSION}
environment:
GRADLE_OPTS: '-Xmx768m'
env_file: settings.env
volumes:
- '.:/app'
- 'gradlecache:/gradle'
links:
- db
- redis
- log
- nginx
- consul
- auth
- referencedata
- notification
- cce
entrypoint:
- 'gradle'
- 'clean'
- 'waitFor'
- '-Pcontainers=
${BASE_URL}/auth
,${BASE_URL}/referencedata
,${BASE_URL}/notification
,${BASE_URL}/cce'
- 'cucumber'
- '-Ptags=@CceNotificationTests'
- '--stacktrace'
- '--no-daemon'
volumes:
gradlecache:
external: false