forked from Mister-EA/bsc-docker-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
37 lines (37 loc) · 928 Bytes
/
docker-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
version: '3'
services:
alice:
image: bsc_validator:latest
environment:
- AUTHORITY_NAME=alice
volumes:
- ./keys/alice:/data/keys
- ./keys/password.txt:/data/keys/password.txt
bob:
image: bsc_validator:latest
environment:
- AUTHORITY_NAME=bob
volumes:
- ./keys/bob:/data/keys
- ./keys/password.txt:/data/keys/password.txt
charlie:
image: bsc_validator:latest
environment:
- AUTHORITY_NAME=charlie
volumes:
- ./keys/charlie:/data/keys
- ./keys/password.txt:/data/keys/password.txt
dave:
image: bsc_validator:latest
environment:
- AUTHORITY_NAME=dave
volumes:
- ./keys/dave:/data/keys
- ./keys/password.txt:/data/keys/password.txt
eve:
image: bsc_validator:latest
environment:
- AUTHORITY_NAME=eve
volumes:
- ./keys/eve:/data/keys
- ./keys/password.txt:/data/keys/password.txt