-
Notifications
You must be signed in to change notification settings - Fork 8
/
docker-compose.yml
43 lines (43 loc) · 975 Bytes
/
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
version: '3'
services:
inferno:
build:
context: ./
volumes:
- ./data:/opt/inferno/data
depends_on:
- validator_service
worker:
build:
context: ./
volumes:
- ./data:/opt/inferno/data
command: bundle exec sidekiq -r ./worker.rb
depends_on:
- redis
hl7_validator_service:
extends:
file: docker-compose.background.yml
service: hl7_validator_service
validator_service:
extends:
file: docker-compose.background.yml
service: validator_service
fhir_validator_app:
extends:
file: docker-compose.background.yml
service: fhir_validator_app
fhirpath:
extends:
file: docker-compose.background.yml
service: fhirpath
nginx:
extends:
file: docker-compose.background.yml
service: nginx
volumes:
- ./config/nginx.conf:/etc/nginx/nginx.conf
redis:
extends:
file: docker-compose.background.yml
service: redis