mirror of https://github.com/lukechilds/umbrel.git
Gonzalo Aune
4 years ago
committed by
GitHub
5 changed files with 42 additions and 0 deletions
@ -0,0 +1,29 @@ |
|||
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 |
Loading…
Reference in new issue