-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
42 lines (42 loc) · 1.04 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
version: "2"
services:
test_trial:
build: ./
entrypoint:
- python
- /brapi_to_isa.py
- -e
- https://urgi.versailles.inra.fr/faidare/brapi/v1/
- -t
- "dXJuOlVSR0kvdHJpYWwvNw=="
volumes:
- ./outputdir:/outputdir
test_study:
build: ./
entrypoint:
- python
- /brapi_to_isa.py
- -e
- https://urgi.versailles.inra.fr/faidare/brapi/v1/
- -s
- "dXJuOlVSR0kvc3R1ZHkvUklHVzE="
volumes:
- ./outputdir:/outputdir
test_pippa:
build: ./
entrypoint:
- python
- /brapi_to_isa.py
- -e
- https://pippa.psb.ugent.be/BrAPIPPA/brapi/v1/
- -s
- "VIB_study___55"
volumes:
- ./outputdir:/outputdir
BrAPI2ISA:
build: ./
entrypoint:
- python
- /brapi_to_isa.py
volumes:
- ./outputdir:/outputdir