-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose-walletservice.yml
More file actions
66 lines (61 loc) · 1.44 KB
/
docker-compose-walletservice.yml
File metadata and controls
66 lines (61 loc) · 1.44 KB
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: '2'
services:
#Bitcore Full Node
bitcore-fullnode:
image: quay.io/interactar/bitcorefullnode:master
container_name: bitcore-fullnode
links:
- bitcore-db
networks:
- bitcore
#restart: always
volumes:
- ./bitcoreroot:/root
- ./runBitcored.sh:/runBitcored.sh
#for prod network > command: bitcore create mynode
restart: always
#Logging
logging:
driver: json-file
options:
max-size: "50m"
command: "/runBitcored.sh livenet"
#Bitcore Wallet Service
wallet-service:
image: quay.io/interactar/bitcorewalletservice:master
ports:
- "3232:3232"
volumes:
- ./walletcfg/config.js:/bws/config.js
- ./walletLogs:/bws/logs
- ./runWalletService.sh:/runWalletService.sh
# volumes_from:
# - db
networks:
- bitcore
links:
- bitcore-db
command: '/runWalletService.sh'
bitcore-db:
image: mongo:latest
ports:
- "27017:27017"
volumes:
- /srv/docker/mongodb:/data/db
networks:
- bitcore
#restart: always
#
#Bitcore Copay and BWS CLI
copayAndBWSClient:
image: quay.io/interactar/copayandbwsclient
container_name: copay-bwscli
ports:
- "8100:8100"
# volumes:
# - ./copaycfg/externalServices.json:/copay/externalServices.json
networks:
- bitcore
networks:
bitcore:
driver: bridge