Skip to content

Commit

Permalink
Add pool service
Browse files Browse the repository at this point in the history
  • Loading branch information
louneskmt committed Dec 19, 2020
1 parent 830a54e commit f162692
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion apps/ride-the-lightning/docker-compose.yml
Expand Up @@ -31,4 +31,22 @@ services:
# LND connection details
LN_SERVER_URL: "https://$LND_IP:$LND_REST_PORT"
MACAROON_PATH: "/lnd/data/chain/bitcoin/$BITCOIN_NETWORK"
CONFIG_PATH: "/lnd/lnd.conf"
CONFIG_PATH: "/lnd/lnd.conf"

# Pool
SWAP_SERVER_URL: "http://loop:8081"

loop:
image: louneskmt/loop:v0.9.0-beta
logging: *default-logging
restart: on-failure
stop_grace_period: 5m
command:
- --network: $BITCOIN_NETWORK
- --loopdir: "/loop"
- --lnd.host: "https://$LND_IP:$LND_GRPC_PORT"
- --lnd.macaroondir: "/lnd/data/chain/bitcoin/$BITCOIN_NETWORK"
- --lnd.tlspath: "/lnd/tls.cert"
volumes:
- ${APP_DATA_DIR}/loop:/loop
- ${LND_DATA_DIR}:/lnd:ro

0 comments on commit f162692

Please sign in to comment.