forked from drand/drand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-network.yml
50 lines (45 loc) · 1.3 KB
/
docker-compose-network.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
version: "3"
services:
drand_docker_demo_1:
container_name: drand_docker_demo1
image: drandorg/go-drand:v1.5.3
command: start --verbose --tls-disable --private-listen drand_docker_demo1:8010 --control 8888 --public-listen 0.0.0.0:9080
volumes:
- drand_docker_demo1:/data/drand
restart: always
ports:
- 8010:8080
- 8818:8888
- 9010:9080
drand_docker_demo_2:
container_name: drand_docker_demo2
image: drandorg/go-drand:v1.5.3
command: start --verbose --tls-disable --private-listen drand_docker_demo2:8020 --control 8888 --public-listen 0.0.0.0:9080
volumes:
- drand_docker_demo2:/data/drand
restart: always
ports:
- 8020:8080
- 8828:8888
- 9020:9080
drand_docker_demo_3:
container_name: drand_docker_demo3
image: drandorg/go-drand:v1.5.3
command: start --verbose --tls-disable --private-listen drand_docker_demo3:8030 --control 8888 --public-listen 0.0.0.0:9080
volumes:
- drand_docker_demo3:/data/drand
restart: always
ports:
- 8030:8080
- 8838:8888
- 9030:9080
volumes:
drand_docker_demo1:
external: true
name: drand_docker_demo1
drand_docker_demo2:
external: true
name: drand_docker_demo2
drand_docker_demo3:
external: true
name: drand_docker_demo3