-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.stockmanagementextension.yml
57 lines (52 loc) · 1.27 KB
/
docker-compose.stockmanagementextension.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
version: "2"
services:
example-extensions:
image: openlmis/openlmis-example-extensions:${OL_EXAMPLE_EXTENSIONS}
volumes:
- 'example-extensions:/extensions'
stockmanagement:
image: openlmis/stockmanagement:${OL_STOCKMANAGEMENT_VERSION}
env_file: settings.env
environment:
JAVA_OPTS: '-Dlogging.config=/logback.xml'
spring_profiles_active: demo-data,refresh-db
volumes:
- 'example-extensions:/extensions'
- 'service-config:/config'
- './logback.xml:/logback.xml'
depends_on: [log]
contract_tests:
image: openlmis/dev:${DOCKER_DEV_IMAGE_VERSION}
env_file: settings.env
volumes:
- '.:/app'
- 'gradlecache:/gradle'
links:
- db
- redis
- log
- nginx
- consul
- auth
- referencedata
- stockmanagement
- example-extensions
entrypoint:
- 'gradle'
- 'clean'
- 'waitFor'
- '-Pcontainers=
${BASE_URL}/auth
,${BASE_URL}/stockmanagement
,${BASE_URL}/referencedata'
- 'cucumber'
- '-Ptags=@ExtensionValidatorsTests'
- '--stacktrace'
- '--no-daemon'
volumes:
gradlecache:
external: false
service-config:
external: false
example-extensions:
external: false