mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
32 lines
647 B
YAML
32 lines
647 B
YAML
version: '3'
|
|
services:
|
|
|
|
bitcoin-core:
|
|
image: ruimarinho/bitcoin-core
|
|
container_name: bitcoin-core
|
|
volumes:
|
|
- ~/.bitcoin:/home/bitcoin/.bitcoin
|
|
ports:
|
|
- 8332:8332
|
|
- 18332:18332
|
|
- 28334:28334
|
|
|
|
lnd:
|
|
image: lnd
|
|
container_name: lnd
|
|
build:
|
|
context: ../
|
|
dockerfile: docker/lnd/Dockerfile
|
|
environment:
|
|
- RPCHOST=bitcoin-core
|
|
- BACKEND=bitcoind
|
|
volumes:
|
|
- ~/.lnd:/root/.lnd:rw
|
|
ports:
|
|
- 9735:9735
|
|
- 10009:10009
|
|
links:
|
|
- "bitcoin-core:bitcoin-core"
|
|
sysctls:
|
|
- net.ipv6.conf.all.disable_ipv6=0
|
|
entrypoint: ["./start-lnd.sh"]
|