generated from inferno-framework/inferno-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
40 lines (40 loc) · 932 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
version: '3'
services:
inferno:
build:
context: ./
volumes:
- ./data:/opt/inferno/data
depends_on:
- hl7_validator_service
# - 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
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