forked from uc-cdis/data-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
56 lines (53 loc) · 1.21 KB
/
docker-compose.yaml
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
45
46
47
48
49
50
51
52
53
54
55
56
services:
submit:
image: krumware/gen3-data-simulator:latest
volumes:
- ./token:/test_mnt/token
- ./mnt:/test_mnt
entrypoint:
- poetry
command:
- poetry
- run
- data-simulator
- submitting_data
- --host=https://heal.krum.app
- --project=DEV/test
- --dir=/test_mnt/$RECORD_ID
- --access_token_file=/test_mnt/token
- --chunk_size=1
environment:
- RECORD_ID=example
networks:
- data_sim_network
simulate:
image: krumware/gen3-data-simulator:latest
volumes:
- ./mnt:/test_mnt
entrypoint:
- poetry
command:
- run
- data-simulator
- simulate
- --url=https://heal.krum.app/dictionary_schema/
- --path=/test_mnt/simulated/
- --program=DEV
- --project=test
networks:
- data_sim_network
validate:
image: krumware/gen3-data-simulator:latest
entrypoint:
- poetry
command:
- poetry
- run
- data-simulator
- validate
- --url=https://heal.krum.app/dictionary_schema/
networks:
- data_sim_network
networks:
data_sim_network:
driver: bridge