-
Notifications
You must be signed in to change notification settings - Fork 12
/
stack.yml
110 lines (88 loc) · 2.62 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
provider:
name: openfaas
functions:
cows:
lang: node18
handler: ./cows
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/cows:${TAG:-latest}
alpine:
lang: dockerfile
handler: ./alpine
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/alpine:${TAG:-latest}
curl:
lang: dockerfile
handler: ./curl
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/curl:${TAG:-latest}
shasum:
lang: dockerfile
handler: ./shasum
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/shasum:${TAG:-latest}
hey:
lang: dockerfile
handler: ./hey
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/hey:${TAG:-latest}
nmap:
lang: dockerfile
handler: ./nmap
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/nmap:${TAG:-latest}
nslookup:
lang: dockerfile
handler: ./nslookup
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/nslookup:${TAG:-latest}
nodeinfo:
lang: node18
handler: ./nodeinfo
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/nodeinfo:${TAG:-latest}
figlet:
lang: dockerfile
handler: ./figlet
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/figlet:${TAG:-latest}
imagemagick:
lang: dockerfile
handler: ./imagemagick
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/imagemagick:${TAG:-latest}
ffmpeg:
lang: dockerfile
handler: ./ffmpeg
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/ffmpeg:${TAG:-latest}
youtube-dl:
lang: dockerfile
handler: ./youtube-dl
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/youtube-dl:${TAG:-latest}
environment:
read_timeout: 5m5s
write_timeout: 5m5s
exec_timeout: 5m
labels:
com.openfaas.ui.ext: "mp4"
sleep:
lang: go
handler: ./sleep
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/sleep:${TAG:-latest}
environment:
sleep_duration: 2s
combine_output: false
haveibeenpwned:
lang: go
handler: ./haveibeenpwned
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/haveibeenpwned:${TAG:-latest}
printer:
lang: golang-middleware
handler: ./printer
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/printer:${TAG:-latest}
certinfo:
lang: go
handler: ./certinfo
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/certinfo-fn:${TAG:-latest}
external-ip:
lang: golang-middleware
handler: ./external-ip
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/external-ip-fn:${TAG:-latest}
markdown:
lang: golang-middleware
handler: ./markdown
image: ${SERVER:-ghcr.io}/${OWNER:-openfaas}/markdown-fn:${TAG:-latest}
configuration:
templates:
- name: golang-middleware
source: https://github.com/openfaas/golang-http-template