forked from SPARC-FAIR-Codeathon/2024-team-5-service-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
31 lines (31 loc) · 2.17 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
version: '3.7'
services:
file-format-converter:
build:
context: ./
dockerfile: docker/python/Dockerfile
labels:
io.simcore.name: '{"name":"File Format Converter"}'
io.simcore.thumbnail: '{"thumbnail":"https://github.com/ITISFoundation/osparc-assets/blob/cb43207b6be2f4311c93cd963538d5718b41a023/assets/default-thumbnail-cookiecutter-osparc-service.png?raw=true"}'
io.simcore.description: '{"description":"Module to allow conversion of files
between various formats such as CSV, JSON, YAML, XLS, XLSX, NWB"}'
io.simcore.key: '{"key":"simcore/services/comp/file-format-converter"}'
io.simcore.version: '{"version":"0.1.1"}'
io.simcore.integration-version: '{"integration-version":"1.0.0"}'
io.simcore.type: '{"type":"computational"}'
io.simcore.authors: '{"authors":[{"name":"Shailesh Appukuttan","email":"[email protected]","affiliation":"INT,
Aix-Marseille University, France"}]}'
io.simcore.contact: '{"contact":"[email protected]"}'
io.simcore.inputs: '{"inputs":{"input_1":{"displayOrder":1.0,"label":"source
file","description":"path of file to be converted","type":"data:*/*"},"input_2":{"displayOrder":2.0,"label":"target
format","description":"required format of the output file","type":"ref_contentSchema","contentSchema":{"title":"target_format","default":"json","enum":["csv","json","yaml","xls","xlsx","nwb","parquet","feather","pkl","xml","toml","h5","hdf5"]}}}}'
io.simcore.outputs: '{"outputs":{"output_1":{"displayOrder":1.0,"label":"converted
file","description":"path to the converted file","type":"data:*/*","fileToKeyMap":{"output.zip":"output_1"}}}}'
org.label-schema.build-date: 2024-08-20T14:31:12+0000
org.label-schema.schema-version: '1.0'
org.label-schema.vcs-ref: ''
org.label-schema.vcs-url: ''
simcore.service.restart-policy: no-restart
simcore.service.settings: '[{"name":"Resources","type":"Resources","value":{"Limits":{"NanoCPUs":1000000000,"MemoryBytes":2147483648}}}]'
target: production
image: simcore/services/comp/file-format-converter:0.1.1