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.
 
 

44 lines
1.4 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
volumes:
- "${HOME}/lnd:/lnd"
- "${HOME}/secrets:/secrets"
network_mode: host