-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (44 loc) · 1005 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
44 lines (44 loc) · 1005 Bytes
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
version: '3'
services:
inferno:
build:
context: ./
volumes:
- ./data:/opt/inferno/data
# depends_on:
# - validator_service
nginx:
image: nginx
volumes:
- ./config/nginx.conf:/etc/nginx/nginx.conf
ports:
- "80:80"
command: [nginx, '-g', 'daemon off;']
# depends_on:
# - fhir_validator_app
worker:
build:
context: ./
volumes:
- ./data:/opt/inferno/data
command: bundle exec sidekiq -r ./worker.rb
depends_on:
- redis
# 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