-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (32 loc) · 888 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (32 loc) · 888 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
services:
spark:
container_name: spark
restart: always
image: sparkfhir/spark:r4-latest
environment:
- StoreSettings__ConnectionString=mongodb://root:secret@mongodb:27017/spark?authSource=admin
- SparkSettings__Endpoint=http://spark:8080/fhir
- ASPNETCORE_URLS=http://+:8080
- ASPNETCORE_HTTP_PORT=8080
ports:
- "8000:8080"
- "8001:8081"
depends_on:
- mongodb
mongodb:
container_name: mongodb
image: sparkfhir/mongo:r4-latest
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: secret
ports:
- "17017:27017"
plan_executor:
container_name: plan_executor
image: incendi/plan_executor:latest
depends_on:
- spark
volumes:
- ./logs:/app/logs:rw
- ./html_summaries:/app/html_summaries:rw
- ./json_results:/app/json_results:rw