-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
60 lines (56 loc) · 1.13 KB
/
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
57
58
services:
faas:
image: k33g/simplism:0.1.3
entrypoint: [
"/simplism",
"listen",
"?",
"?",
"--http-port",
"7070",
"--log-level",
"info",
"--information",
"faas spawner",
"--spawn-mode",
"true",
"--http-port-auto",
"true",
"--recovery-path",
"/faas-data/recovery.yaml",
"--service-discovery",
"true",
]
environment:
- ADMIN_DISCOVERY_TOKEN=bobmorane
- ADMIN_SPAWN_TOKEN=billbalantine
- ADMIN_REGISTRY_TOKEN=misterming
- PRIVATE_REGISTRY_TOKEN=missylangylang
volumes:
- ./faas-data:/faas-data
ports:
- 7070:7070
registry:
image: k33g/simplism:0.1.3
entrypoint: [
"/simplism",
"listen",
"?",
"?",
"--http-port",
"6060",
"--log-level",
"info",
"--information",
"faas registry",
"--registry-mode",
"true",
"--registry-path",
"/registry-data",
]
environment:
- ADMIN_REGISTRY_TOKEN=misterming
volumes:
- ./registry-data:/registry-data
ports:
- 6060:6060