forked from liamzebedee/bitcoin-blockchain-notarise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
45 lines (44 loc) · 893 Bytes
/
docker-compose.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
version: '2'
services:
tx:
build:
context: .
volumes:
- .:/usr/src/app
environment:
BITCOIN_HOST: bitcoin
BITCOIN_RPCUSER: merlin
BITCOIN_RPCPASSWORD: secret
command: py.test -v
tx-py2:
build:
context: .
dockerfile: Dockerfile-py2
volumes:
- .:/usr/src/app
environment:
BITCOIN_HOST: bitcoin
BITCOIN_RPCUSER: merlin
BITCOIN_RPCPASSWORD: secret
command: py.test -v
bitcoin:
image: ascribe/bitcoin
volumes:
- ./.bitcoin:/root/.bitcoin
ports:
- '18332'
- '18333'
command: bitcoind -regtest -printtoconsole
bdocs:
build:
context: .
volumes:
- .:/usr/src/app/
working_dir: /usr/src/app/docs
command: make html
vdocs:
image: nginx
ports:
- '30083:80'
volumes:
- ./docs/build/html:/usr/share/nginx/html