forked from getumbrel/umbrel-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml.bak
More file actions
49 lines (46 loc) · 1.62 KB
/
docker-compose.yml.bak
File metadata and controls
49 lines (46 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: "3.7"
services:
app_proxy:
environment:
APP_HOST: core-lightning-rtl_web_1
APP_PORT: 3000
web:
image: shahanafarooqui/rtl:v0.15.6@sha256:5cac3cbe5e730b86c6f888b2b5b4c37faa08fe0232eefda3d6895e2b46629369
container_name: core-lightning-rtl_web_1
user: "1000:1000"
restart: on-failure
environment:
PORT: 3000
APP_PASSWORD: $APP_PASSWORD
LN_IMPLEMENTATION: "CLN"
lnImplementation: "CLN"
LN_SERVER_URL: "https://$APP_CORE_LIGHTNING_REST_HOST:$CORE_LIGHTNING_REST_PORT"
RUNE_PATH: "/root/.lightning/.commando-env"
RTL_CONFIG_PATH: "/data"
RTL_COOKIE_PATH: "/data/.cookie"
BLOCK_EXPLORER_URL: "${APP_CORE_RTL_BLOCK_EXPLORER_URL}"
# Boltz
BOLTZ_SERVER_URL: "https://core-lightning-rtl_boltz_1:9003"
BOLTZ_MACAROON_PATH: "/boltz/.boltz/macaroons"
volumes:
- "${APP_DATA_DIR}/data/rtl:/data"
- "${APP_CORE_LIGHTNING_DATA_DIR}:/root/.lightning:ro"
- "${APP_DATA_DIR}/data/boltz:/boltz:ro"
boltz:
container_name: core-lightning-rtl_boltz_1
user: "1000:1000"
image: boltz/boltz-client:2.10.2@sha256:239e78726ff14524d6f1d0174a301fe015e08e50cdbb75c33a209f46355a3f94
restart: "on-failure"
stop_grace_period: "1m"
environment:
HOME: "/data"
volumes:
- "${APP_DATA_DIR}/data/boltz:/data"
- "${APP_CORE_LIGHTNING_DATA_DIR}:/cln:ro"
command:
- --network=$APP_BITCOIN_NETWORK
- --cln.datadir=/cln
- --cln.host=$APP_CORE_LIGHTNING_DAEMON_IP
- --cln.port=$APP_CORE_LIGHTNING_DAEMON_GRPC_PORT
- --rpc.rest.host="0.0.0.0"
- --rpc.rest.port="9003"