2020-03-01 00:15:24 -08:00
|
|
|
version: '3'
|
|
|
|
|
services:
|
|
|
|
|
|
2020-11-23 14:43:17 -05:00
|
|
|
bitcoin-core:
|
2021-09-16 15:44:22 -07:00
|
|
|
image: ruimarinho/bitcoin-core:0.21.1
|
2020-11-23 14:43:17 -05:00
|
|
|
container_name: bitcoin-core
|
2020-07-21 20:48:52 -07:00
|
|
|
volumes:
|
2020-11-23 14:43:17 -05:00
|
|
|
- ~/.bitcoin:/home/bitcoin/.bitcoin
|
2020-12-27 20:55:52 -08:00
|
|
|
ports:
|
|
|
|
|
- 8332:8332
|
|
|
|
|
- 18332:18332
|
2021-09-01 06:06:11 -07:00
|
|
|
- 28334:28334
|
2020-07-21 20:48:52 -07:00
|
|
|
|
2020-07-02 22:28:26 -07:00
|
|
|
lnd:
|
2020-06-22 13:55:20 -07:00
|
|
|
image: lnd
|
2020-07-02 22:28:26 -07:00
|
|
|
container_name: lnd
|
2020-06-22 13:55:20 -07:00
|
|
|
build:
|
|
|
|
|
context: ../
|
|
|
|
|
dockerfile: docker/lnd/Dockerfile
|
|
|
|
|
environment:
|
2020-11-23 14:43:17 -05:00
|
|
|
- RPCHOST=bitcoin-core
|
|
|
|
|
- BACKEND=bitcoind
|
2020-06-22 13:55:20 -07:00
|
|
|
volumes:
|
2020-12-27 20:55:52 -08:00
|
|
|
- ~/.lnd:/root/.lnd:rw
|
2020-10-28 15:58:19 -04:00
|
|
|
ports:
|
|
|
|
|
- 9735:9735
|
2020-12-27 20:55:52 -08:00
|
|
|
- 10009:10009
|
2020-07-21 20:48:52 -07:00
|
|
|
links:
|
2020-11-23 14:43:17 -05:00
|
|
|
- "bitcoin-core:bitcoin-core"
|
2020-09-27 14:54:34 -07:00
|
|
|
sysctls:
|
|
|
|
|
- net.ipv6.conf.all.disable_ipv6=0
|
|
|
|
|
entrypoint: ["./start-lnd.sh"]
|