mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-16 13:01:04 +02:00
Use only named volumes in docker-compose
This commit is contained in:
parent
e66377a3c9
commit
d5df9c73f7
1 changed files with 9 additions and 3 deletions
|
|
@ -5,7 +5,7 @@ services:
|
|||
image: ruimarinho/bitcoin-core:0.21.1
|
||||
container_name: bitcoin-core
|
||||
volumes:
|
||||
- ~/.bitcoin:/home/bitcoin/.bitcoin
|
||||
- bitcoin:/home/bitcoin/.bitcoin
|
||||
ports:
|
||||
- 8332:8332
|
||||
- 18332:18332
|
||||
|
|
@ -25,7 +25,7 @@ services:
|
|||
depends_on:
|
||||
- "tor-node"
|
||||
volumes:
|
||||
- ~/.lnd:/root/.lnd
|
||||
- lnd_client_dir:/root/.lnd
|
||||
- tor-dir:/var/lib/tor
|
||||
ports:
|
||||
- 10009:10009
|
||||
|
|
@ -69,7 +69,7 @@ services:
|
|||
- 10010:10009
|
||||
- 9835:9835
|
||||
volumes:
|
||||
- ~/.lightning:/root/.lightning
|
||||
- clightning_client_dir:/root/.lightning
|
||||
- tor-dir:/var/lib/tor
|
||||
links:
|
||||
- "bitcoin-core:bitcoin-core"
|
||||
|
|
@ -151,8 +151,14 @@ services:
|
|||
entrypoint: ["./entrypoint.sh"]
|
||||
|
||||
volumes:
|
||||
bitcoin:
|
||||
driver: local
|
||||
lnd_client_dir:
|
||||
driver: local
|
||||
lnd_server_dir:
|
||||
driver: local
|
||||
clightning_client_dir:
|
||||
driver: local
|
||||
clightning_server_dir:
|
||||
driver: local
|
||||
squeaknode_dir:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue