-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
44 lines (44 loc) · 2.29 KB
/
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
44
services:
osparc-opencor:
build:
context: ./
dockerfile: src/Dockerfile
labels:
io.simcore.authors: '{"authors": [{"name": "Hugh Sorby", "email": "[email protected]",
"affiliation": "University of Auckland"}, {"name": "Pedro Crespo-Valero",
"email": "[email protected]", "affiliation": "IT''IS Foundation"}]}'
io.simcore.contact: '{"contact": "[email protected]"}'
io.simcore.description: '{"description": "OpenCOR service for osparc [ISAN-2019
Demo]"}'
io.simcore.inputs: '{"inputs": {"stimulation_mode": {"displayOrder": 1, "label":
"Stimulation Mode", "description": "Stimulation mode as an integer number
(1:stellate; 2:vagal)", "type": "integer", "defaultValue": "1"}, "stimulation_level":
{"displayOrder": 2, "label": "Stimulation Level", "description": "Stimulation
level (0-1) as a decimal number", "type": "number", "defaultValue": "0.5"}}}'
io.simcore.key: '{"key": "simcore/services/comp/osparc-opencor"}'
io.simcore.name: '{"name": "osparc-opencor"}'
io.simcore.outputs: '{"outputs": {"results_json": {"displayOrder": 1, "label":
"Membrane Potential and Heart rate", "description": "Membrane potential
(v) at each time step and the heart rate in beats per minute", "type": "data:application/json",
"fileToKeyMap": {"results.json": "results_json"}}, "membrane_potential_csv":
{"displayOrder": 2, "label": "Membrane Potential (CSV-format)", "description":
"Membrane potential (v) at each time step", "type": "data:application/csv",
"fileToKeyMap": {"membrane-potential.csv": "membrane_potential_csv"}}}}'
io.simcore.type: '{"type": "computational"}'
io.simcore.version: '{"version": "0.3.0"}'
org.label-schema.build-date: ${BUILD_DATE}
org.label-schema.schema-version: '1.0'
org.label-schema.vcs-ref: ${VCS_REF}
org.label-schema.vcs-url: https://github.com/ITISFoundation/osparc-opencor.git
target: production
command: run
environment:
- INPUT_FOLDER=/input
- OUTPUT_FOLDER=/output
- LOG_FOLDER=/log
image: ${DOCKER_IMAGE_NAME}:latest
volumes:
- ./validation/input:/input
- ./tmp/output:/output
- ./tmp/log:/log
version: '3.6'