Fix anonymous datadirs (#691)
* Update LiT datadir Uses the same folder as [in the LiT Dockerfile](https://github.com/lightninglabs/lightning-terminal/blob/master/Dockerfile#L62) to prevent the creation of anonymous volumes as [described here](https://stackoverflow.com/a/62654594/183537). * Update Monero datadirs Uses the same folder as [in the Monero Dockerfile](https://github.com/btcpayserver/dockerfile-deps/blob/master/Monero/0.18.0.0/linuxarm64v8.Dockerfile#L41) to prevent the creation of anonymous volumes as [described here](https://stackoverflow.com/a/62654594/183537).
This commit is contained in:
@@ -10,6 +10,7 @@ services:
|
||||
- "18081"
|
||||
volumes:
|
||||
- "xmr_data:/home/monero/.bitmonero"
|
||||
- "xmr_wallet:/wallet"
|
||||
monerod_wallet:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_monero_wallet
|
||||
@@ -18,6 +19,7 @@ services:
|
||||
expose:
|
||||
- "18082"
|
||||
volumes:
|
||||
- "xmr_data:/home/monero/.bitmonero"
|
||||
- "xmr_wallet:/wallet"
|
||||
depends_on:
|
||||
- monerod
|
||||
|
||||
@@ -9,7 +9,7 @@ services:
|
||||
expose:
|
||||
- "8080"
|
||||
volumes:
|
||||
- "lnd_lit_datadir:/root"
|
||||
- "lnd_lit_datadir:/root/.lnd"
|
||||
- "lnd_bitcoin_datadir:/data/lnd:ro"
|
||||
links:
|
||||
- bitcoind
|
||||
|
||||
Reference in New Issue
Block a user