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.
51 lines
1.6 KiB
51 lines
1.6 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.8.0-experimental
|
|
logging: *default-logging
|
|
volumes:
|
|
- ${HOME}/lnd:/root/.lnd
|
|
- /var/lib/tor:/var/lib/tor
|
|
- /run/tor:/run/tor
|
|
restart: on-failure
|
|
depends_on: [ bitcoin, web ]
|
|
network_mode: host
|
|
lnd-unlock:
|
|
build: ${HOME}/build/lnd-unlock/
|
|
depends_on: [ lnd ]
|
|
logging: *default-logging
|
|
secrets:
|
|
- lnd-password
|
|
- lnd-admin
|
|
volumes:
|
|
- "${HOME}/lnd/tls.cert:/lnd/tls.cert:ro"
|
|
network_mode: host
|
|
secrets:
|
|
lnd-password:
|
|
file: ${HOME}/secrets/lnd-password.txt
|
|
lnd-admin:
|
|
file: ${HOME}/lnd/data/chain/bitcoin/mainnet/admin.macaroon
|
|
|