lnd.xprv/docker/docker-compose.yml

56 lines
1.3 KiB
YAML
Raw Normal View History

version: '2'
services:
# btc is an image of bitcoin node which used as base image for btcd and
# btccli. The environment variables default values determined on stage of
# container start within starting script.
btcd:
image: btcd
container_name: btcd
build:
context: btcd/
volumes:
- shared:/rpc
- bitcoin:/data
environment:
- RPCUSER
- RPCPASS
- NETWORK
- DEBUG
- MINING_ADDRESS
entrypoint: ["./start-btcd.sh"]
lnd:
image: lnd
container_name: lnd
build:
context: ../
dockerfile: dev.Dockerfile
environment:
- RPCUSER
- RPCPASS
- NETWORK
- CHAIN
- DEBUG
volumes:
- shared:/rpc
- lnd:/root/.lnd
entrypoint: ["./start-lnd.sh"]
links:
- "btcd:blockchain"
volumes:
2018-01-07 13:12:57 +03:00
# shared volume is need to store the btcd rpc certificates and use it within
# btcctl and lnd containers.
shared:
driver: local
2017-01-13 23:24:07 +03:00
# bitcoin volume is needed for maintaining blockchain persistence
2017-01-13 23:24:07 +03:00
# during btcd container recreation.
bitcoin:
driver: local
# lnd volume is used for persisting lnd application data and chain state
# during container lifecycle.
lnd:
driver: local