forked from ITISFoundation/osparc-opencor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
38 lines (38 loc) · 1.77 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
services:
osparc-opencor:
build:
context: ./
dockerfile: src/Dockerfile
labels:
io.simcore.authors: '{"authors": [{"name": "Hugh Sorby", "email": "hsorby",
"affiliation": "University of Auckland"}, {"name": "Pedro Crespo", "email":
"pcrespov", "affiliation": "ITIS Foundation"}]}'
io.simcore.contact: '{"contact": "pcrespov"}'
io.simcore.description: '{"description": "OpenCOR service for osparc [Demo]"}'
io.simcore.inputs: '{"inputs": {"stimulation_period": {"displayOrder": 1,
"label": "Stimulation Period", "description": "Stimulation period in milliseconds
as a decimal number", "type": "number", "defaultValue": "1000.0"}}}'
io.simcore.key: '{"key": "simcore/services/comp/osparc-opencor"}'
io.simcore.name: '{"name": "osparc-opencor"}'
io.simcore.outputs: '{"outputs": {"membrane_potential_json": {"displayOrder":
1, "label": "Membrane Potential", "description": "Membrane potential (v)
at each time step", "type": "data:application/json", "fileToKeyMap": {"membrain-potential.json":
"membrane_potential_json"}}}}'
io.simcore.type: '{"type": "computational"}'
io.simcore.version: '{"version": "0.2.2"}'
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/pcrespov/osparc-opencor.git
target: production
command: run
environment:
- INPUT_FOLDER=/input
- OUTPUT_FOLDER=/output
- LOG_FOLDER=/log
image: ${DOCKER_REGISTRY}/simcore/services/comp/osparc-opencor:latest
volumes:
- ./validation/input:/input
- ./tmp/output:/output
- ./tmp/log:/log
version: '3.6'