forked from Dolu89/ligess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
43 lines (35 loc) · 1.11 KB
/
docker-compose.yml
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
version: "3.7"
services:
ligess:
build: ./
restart: always
ports:
- "3000:3000"
environment:
## Ligess
- HOST=0.0.0.0
- PORT=3000
- LIGESS_USERNAME=dolu
- LIGESS_DOMAIN=bips.xyz
## Backend (choose only one)
#### LND
# - LIGESS_LN_BACKEND=LND
# - LIGESS_LND_REST=https://lnd_rest_api # can be an onion url
# - LIGESS_LND_MACAROON=hex macaroon with createinvoice
#### Eclair
# - LIGESS_LN_BACKEND=Eclair
# - LIGESS_ECLAIR_REST=http://eclair_rest_api # can be an onion url
# - LIGESS_ECLAIR_LOGIN=login
# - LIGESS_ECLAIR_PASSWORD=password
#### LNbits
# - LIGESS_LN_BACKEND=LNbits
# - LIGESS_LNBITS_DOMAIN=https://lnbits.com # can be replaced by your own LNbits isntance url
# - LIGESS_LNBITS_API_KEY=this1is2an3example # can be found at the right of your wallet page, under "API info" > "Invoice/read key"
## Tor
# - LIGESS_TOR_PROXY_URL=socks5h://tor:9050
# tor:
# image: lncm/tor:latest
# restart: on-failure
# command: --SocksPort 0.0.0.0:9050
# expose:
# - 9050