-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (37 loc) · 906 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (37 loc) · 906 Bytes
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.5'
services:
peercoind:
image: peercoin/peercoind:latest
restart: always
environment:
- RPC_USER=USER
- RPC_PASSWORD=PASS
volumes:
- type: bind
source: ./.peercoin
target: /data
command:
-rpcbind=0.0.0.0
-nominting
-printtoconsole
electrumx:
image: peercoin/electrumx:latest
environment:
- DAEMON_URL=USER:PASS@peercoind
- COIN=Peercoin
- DB_DIRECTORY=/data
- CACHE_MB=400
- SERVICES=tcp://:50001,ssl://:50002,wss://:50004,rpc://0.0.0.0:8000
- DONATION_ADDRESS=p92W3t7YkKfQEPDb7cG9jQ6iMh7cpKLvwK
volumes:
- type: bind
source: .electrum
target: /data
ports:
- "50001:50001" # comment out to disable TCP port (plaintext)
- "50002:50002"
- "50004:50004"
- "8000:8000"
restart: always
depends_on:
- peercoind