forked from iotexproject/w3bstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yaml
66 lines (60 loc) · 1.46 KB
/
docker-compose-dev.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
59
60
61
62
63
64
65
66
version: "3.6"
services:
bootnode:
image: huangzhiran/bootnode:v1.0.0
container_name: w3bstream-bootnode
platform: linux/x86_64
restart: always
ports:
- 8000:8000
halo2:
image: wangweixiaohao2944/halo2server:v0.0.6
container_name: halo2-service
platform: linux/x86_64
restart: always
ports:
- 4002:4001
zkwasm:
image: wangweixiaohao2944/zkwasmserver:v0.0.5
container_name: zkwasm-service
platform: linux/x86_64
restart: always
ports:
- 4003:4001
risc0:
image: wangweixiaohao2944/risc0server:v1.0.0.rc6
depends_on:
- "postgres"
container_name: risc0-service
platform: linux/x86_64
restart: always
environment:
DATABASE_URL: postgres://test_user:test_passwd@postgres:5432/test?sslmode=disable
BONSAI_URL: https://api.bonsai.xyz
BONSAI_KEY: "${BONSAI_KEY:-}"
ports:
- "4001:4001"
wasm:
image: wangweixiaohao2944/wasmserver:v0.1.0.rc1
container_name: wasm-service
platform: linux/x86_64
restart: always
ports:
- "4004:4001"
postgres:
image: postgres:14
container_name: w3bstream-sprout-postgres
restart: always
command:
[
"postgres",
"-cshared_preload_libraries=pg_stat_statements"
]
environment:
POSTGRES_USER: test_user
POSTGRES_PASSWORD: test_passwd
POSTGRES_DB: test
volumes:
- ./postgres:/var/lib/postgresql/data
ports:
- "5432:5432"