-
Notifications
You must be signed in to change notification settings - Fork 1
/
stack.yml
63 lines (62 loc) · 1.55 KB
/
stack.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
provider:
name: faas
gateway: http://127.0.0.1:8080
functions:
ac-analysis:
lang: python3
handler: ./ac-analysis
image: audiocommons/faas-ac-analysis:latest
environment_file:
- env.yml
environment:
read_timeout: 330s
write_timeout: 330s
combine_output: false
write_debug: false
sonic-annotator:
lang: dockerfile
handler: ./sonic-annotator
image: audiocommons/faas-sonic-annotator:latest
environment:
read_timeout: 300s
write_timeout: 300s
combine_output: false
write_debug: false
confident-chord-estimator:
lang: dockerfile
handler: ./confident-chord-estimator
image: audiocommons/faas-confident-chord-estimator:latest
environment:
read_timeout: 300s
write_timeout: 300s
combine_output: false
write_debug: false
instrument-identifier:
lang: dockerfile
handler: ./instrument-identifier
image: audiocommons/faas-instrument-identifier
environment:
read_timeout: 300s
write_timeout: 300s
combine_output: false
write_debug: false
essentia:
lang: dockerfile
handler: ./essentia
image: audiocommons/faas-essentia:latest
environment:
read_timeout: 300s
write_timeout: 300s
combine_output: false
write_debug: false
ac-search:
lang: python3
handler: ./ac-search
image: audiocommons/faas-ac-search:latest
environment_file:
- env.yml
environment:
read_timeout: 30s
write_timeout: 30s
combine_output: false
write_debug: false