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.
54 lines
1.8 KiB
54 lines
1.8 KiB
version: '3.7'
|
|
x-logging: &default-logging
|
|
driver: journald
|
|
options:
|
|
tag: "{{.Name}}"
|
|
|
|
x-utility: &default-utility
|
|
image: "alpine:3.11"
|
|
logging: *default-logging
|
|
network_mode: host
|
|
|
|
services:
|
|
web:
|
|
image: nginx:1.17.8
|
|
logging: *default-logging
|
|
volumes:
|
|
- ${HOME}/nginx:/etc/nginx
|
|
restart: on-failure
|
|
network_mode: host
|
|
bitcoin:
|
|
image: lncm/bitcoind:v0.19.0.1
|
|
logging: *default-logging
|
|
volumes:
|
|
- ${HOME}/bitcoin:/root/.bitcoin
|
|
restart: on-failure
|
|
network_mode: host
|
|
lnd:
|
|
image: lncm/lnd:v0.9.1-experimental
|
|
logging: *default-logging
|
|
volumes:
|
|
- ${HOME}/lnd:/data/.lnd
|
|
- /var/lib/tor:/var/lib/tor
|
|
- /run/tor:/run/tor
|
|
restart: on-failure
|
|
depends_on: [ bitcoin, web ]
|
|
network_mode: host
|
|
invoicer:
|
|
image: "lncm/invoicer:v0.8.0"
|
|
depends_on: [ bitcoin, lnd ]
|
|
restart: on-failure
|
|
network_mode: host
|
|
volumes:
|
|
- "${HOME}/invoicer/invoicer.conf:/data/invoicer.conf:ro"
|
|
- "${HOME}/invoicer:/lncm"
|
|
- "${HOME}/lnd:/lnd:ro"
|
|
lnd-unlock:
|
|
build: ${HOME}/build/lnd-unlock/
|
|
depends_on: [ lnd ]
|
|
logging: *default-logging
|
|
restart: always
|
|
volumes:
|
|
- "${HOME}/lnd:/lnd"
|
|
- "${HOME}/secrets:/secrets"
|
|
network_mode: host
|
|
|