mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-19 13:18:26 +02:00
Run extra squeaknode instance in docker-compose (#1444)
This commit is contained in:
parent
508a4cb423
commit
d797e76ed4
2 changed files with 28 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
|||
[node]
|
||||
network=testnet
|
||||
|
||||
[lnd]
|
||||
host=lnd
|
||||
tls_cert_path=~/.lnd/tls.cert
|
||||
|
|
@ -8,6 +11,7 @@ rpc_host=bitcoin-core
|
|||
rpc_port=18332
|
||||
rpc_user=devuser
|
||||
rpc_pass=devpass
|
||||
zeromq_hashblock_port=28334
|
||||
|
||||
[webadmin]
|
||||
enabled=true
|
||||
|
|
|
|||
|
|
@ -35,3 +35,27 @@ services:
|
|||
container_name: tor-socks-proxy
|
||||
image: peterdavehello/tor-socks-proxy:latest
|
||||
restart: unless-stopped
|
||||
|
||||
squeaknode:
|
||||
image: squeaknode
|
||||
build:
|
||||
context: ../
|
||||
dockerfile: Dockerfile
|
||||
volumes:
|
||||
- ~/.lnd:/root/.lnd
|
||||
- ./config.ini:/config.ini
|
||||
ports:
|
||||
- 12995:12994
|
||||
- 8557:8555
|
||||
- 18557:18555
|
||||
links:
|
||||
- "bitcoin-core:bitcoin-core"
|
||||
- "lnd:lnd"
|
||||
sysctls:
|
||||
- net.ipv6.conf.all.disable_ipv6=0
|
||||
entrypoint: ["./start-squeaknode.sh"]
|
||||
|
||||
volumes:
|
||||
# lnd is needed for sharing tht tls certificate
|
||||
test_lnd_client_dir:
|
||||
driver: local
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue