mirror of https://github.com/lukechilds/umbrel.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
909 B
30 lines
909 B
4 years ago
|
version: "3.7"
|
||
|
|
||
|
x-logging: &default-logging
|
||
|
driver: journald
|
||
|
options:
|
||
|
tag: "umbrel-app {{.Name}}"
|
||
|
|
||
|
services:
|
||
|
sphinx-relay:
|
||
|
container_name: sphinx-relay
|
||
|
image: sphinxlightning/sphinx-relay:v1.2.9@sha256:21e457a44efc8286c6fa066204db72d45c47417676d802ed3e0e4cbc923b87c0
|
||
|
restart: on-failure
|
||
|
logging: *default-logging
|
||
|
volumes:
|
||
|
- ${LND_DATA_DIR}:/lnd:ro
|
||
|
- ${APP_DATA_DIR}/data:/relay/.lnd/
|
||
|
ports:
|
||
|
- "$APP_SPHINX_RELAY_PORT:$APP_SPHINX_RELAY_PORT"
|
||
|
environment:
|
||
|
PUBLIC_URL: "$APP_HIDDEN_SERVICE:$APP_SPHINX_RELAY_PORT"
|
||
|
LND_IP: $LND_IP
|
||
|
CONNECT_UI: "true"
|
||
|
LND_PORT: $LND_GRPC_PORT
|
||
|
TLS_LOCATION: /lnd/tls.cert
|
||
|
MACAROON_LOCATION: /lnd/data/chain/bitcoin/${BITCOIN_NETWORK}/admin.macaroon
|
||
|
LND_LOG_LOCATION: /lnd/logs/bitcoin/${BITCOIN_NETWORK}/lnd.log
|
||
|
networks:
|
||
|
default:
|
||
|
ipv4_address: $APP_SPHINX_RELAY_IP
|