vls: service added in compose stack
- update readme Signed-off-by: Lakshya Singh <lakshay.singh1108@gmail.com>
This commit is contained in:
parent
4abc404246
commit
2880ba87eb
@ -36,6 +36,7 @@ sudo systemctl enable --now docker
|
|||||||
docker volume create bitcoin_data
|
docker volume create bitcoin_data
|
||||||
docker volume create lightning_data
|
docker volume create lightning_data
|
||||||
docker volume create txoo_data
|
docker volume create txoo_data
|
||||||
|
docker volume create vls_data
|
||||||
```
|
```
|
||||||
|
|
||||||
## Docker Compose Run
|
## Docker Compose Run
|
||||||
|
@ -30,3 +30,8 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- BITCOIN_NETWORK=regtest
|
- BITCOIN_NETWORK=regtest
|
||||||
|
|
||||||
|
vls:
|
||||||
|
container_name: vlsd-regtest
|
||||||
|
environment:
|
||||||
|
- VLS_NETWORK=regtest
|
||||||
|
- BITCOIND_RPC_URL=http://rpcuser:VLSsigner1@bitcoind:38332
|
||||||
|
@ -64,6 +64,24 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- BITCOIN_NETWORK=testnet
|
- BITCOIN_NETWORK=testnet
|
||||||
|
|
||||||
|
vls:
|
||||||
|
build:
|
||||||
|
dockerfile: ./vlsd/Dockerfile
|
||||||
|
context: .
|
||||||
|
image: vlsd
|
||||||
|
container_name: vlsd-test
|
||||||
|
command:
|
||||||
|
- --log-level=info
|
||||||
|
- --connect=http://core-lightning:7701
|
||||||
|
networks:
|
||||||
|
- LN_testing
|
||||||
|
volumes:
|
||||||
|
- vls_data:/home/vls/.lightning-signer
|
||||||
|
environment:
|
||||||
|
- VLS_NETWORK=testnet
|
||||||
|
- VLS_PERMISSIVE=1
|
||||||
|
- RUST_LOG=info
|
||||||
|
- BITCOIND_RPC_URL=http://rpcuser:VLSsigner1@bitcoind:18332
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
bitcoin_data:
|
bitcoin_data:
|
||||||
@ -75,6 +93,9 @@ volumes:
|
|||||||
txoo_data:
|
txoo_data:
|
||||||
name: txoo_data
|
name: txoo_data
|
||||||
external: true
|
external: true
|
||||||
|
vls_data:
|
||||||
|
name: vls_data
|
||||||
|
external: true
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
LN_testing:
|
LN_testing:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user