vls-container/vlsd/docker-compose.yml
Lakshya Singh e46298a6f8
txoo: connect to vls and cln
- set env var for vls frontend
- set arg for vlsd2
- create txoo-server service
- cln uses http source
- vls fetch public key using curl with retries fail if not set
- update README for vls standalone
Signed-off-by: Lakshya Singh <lakshay.singh1108@gmail.com>
2024-08-29 21:21:15 +05:30

26 lines
502 B
YAML

version: "3.8"
services:
vls:
build:
context: .
dockerfile: Dockerfile
args:
- VLS_REPO
- VLS_GIT_HASH
- TXOO_PUBLIC_KEY
image: vlsd
container_name: vlsd-standalone
command:
- --connect=$CLN_REMOTE_HSMD_URL
network_mode: host
volumes:
- vls_data:/home/vls/.lightning-signer
environment:
- BITCOIND_RPC_URL=$BITCOIND_RPC_URL
- VLS_NETWORK=testnet
volumes:
vls_data:
name: vls_data
external: true