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.
23 lines
789 B
23 lines
789 B
version: '3.7'
|
|
services:
|
|
web:
|
|
image: nginx:1.17.8
|
|
volumes:
|
|
- ${HOME}/nginx:/etc/nginx
|
|
restart: on-failure
|
|
network_mode: host
|
|
bitcoin:
|
|
image: lncm/bitcoind:v0.19.0.1
|
|
volumes:
|
|
- ${HOME}/bitcoin:/root/.bitcoin
|
|
restart: on-failure
|
|
network_mode: host
|
|
lnd:
|
|
image: lncm/lnd:v0.8.0-experimental
|
|
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
|
|
|