Browse Source

add in lnd auto pilot for all other lnd supporting coins and add in pruning options for all other coins

feature/auto_ssh
Andrew Camilleri 6 years ago
parent
commit
10e2ff08c9
  1. 9
      docker-compose-generator/docker-fragments/opt-bgold-lnd-autopilot.yml
  2. 8
      docker-compose-generator/docker-fragments/opt-bgold-save-storage-s.yml
  3. 8
      docker-compose-generator/docker-fragments/opt-bgold-save-storage-xs.yml
  4. 8
      docker-compose-generator/docker-fragments/opt-bgold-save-storage-xxs.yml
  5. 8
      docker-compose-generator/docker-fragments/opt-bgold-save-storage.yml
  6. 9
      docker-compose-generator/docker-fragments/opt-btc-lnd-autopilot.yml
  7. 8
      docker-compose-generator/docker-fragments/opt-btc-save-storage-s.yml
  8. 8
      docker-compose-generator/docker-fragments/opt-btc-save-storage-xs.yml
  9. 8
      docker-compose-generator/docker-fragments/opt-btc-save-storage-xxs.yml
  10. 8
      docker-compose-generator/docker-fragments/opt-btc-save-storage.yml
  11. 8
      docker-compose-generator/docker-fragments/opt-feathercoin-save-storage-s.yml
  12. 8
      docker-compose-generator/docker-fragments/opt-feathercoin-save-storage-xs.yml
  13. 8
      docker-compose-generator/docker-fragments/opt-feathercoin-save-storage-xxs.yml
  14. 8
      docker-compose-generator/docker-fragments/opt-feathercoin-save-storage.yml
  15. 8
      docker-compose-generator/docker-fragments/opt-groestlcoin-save-storage-s.yml
  16. 8
      docker-compose-generator/docker-fragments/opt-groestlcoin-save-storage-xs.yml
  17. 8
      docker-compose-generator/docker-fragments/opt-groestlcoin-save-storage-xxs.yml
  18. 8
      docker-compose-generator/docker-fragments/opt-groestlcoin-save-storage.yml
  19. 9
      docker-compose-generator/docker-fragments/opt-ltc-lnd-autopilot.yml
  20. 8
      docker-compose-generator/docker-fragments/opt-ltc-save-storage-s.yml
  21. 8
      docker-compose-generator/docker-fragments/opt-ltc-save-storage-xs.yml
  22. 8
      docker-compose-generator/docker-fragments/opt-ltc-save-storage-xxs.yml
  23. 8
      docker-compose-generator/docker-fragments/opt-ltc-save-storage.yml

9
docker-compose-generator/docker-fragments/opt-bgold-lnd-autopilot.yml

@ -0,0 +1,9 @@
version: "3"
services:
lnd_bitcoingold:
environment:
LND_EXTRA_ARGS: |
autopilot.active=1
autopilot.maxchannels=5
autopilot.allocation=0.6

8
docker-compose-generator/docker-fragments/opt-bgold-save-storage-s.yml

@ -0,0 +1,8 @@
version: "3"
services:
bgoldd:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 6 months of block, your lightning node won't be able to see channel created 6 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=50000

8
docker-compose-generator/docker-fragments/opt-bgold-save-storage-xs.yml

@ -0,0 +1,8 @@
version: "3"
services:
bgoldd:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 3 months of block, your lightning node won't be able to see channel created 3 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=25000

8
docker-compose-generator/docker-fragments/opt-bgold-save-storage-xxs.yml

@ -0,0 +1,8 @@
version: "3"
services:
bgoldd:
environment:
# If you don't use Lightning Network, you want this
# This save about 2 weeks worth of block
BITCOIN_EXTRA_ARGS: prune=5000

8
docker-compose-generator/docker-fragments/opt-bgold-save-storage.yml

@ -0,0 +1,8 @@
version: "3"
services:
bgoldd:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 1 years of block, your lightning node won't be able to see channel created 1 year since the time you start it.
BITCOIN_EXTRA_ARGS: prune=100000

9
docker-compose-generator/docker-fragments/opt-btc-lnd-autopilot.yml

@ -0,0 +1,9 @@
version: "3"
services:
lnd_bitcoin:
environment:
LND_EXTRA_ARGS: |
autopilot.active=1
autopilot.maxchannels=5
autopilot.allocation=0.6

8
docker-compose-generator/docker-fragments/opt-btc-save-storage-s.yml

@ -0,0 +1,8 @@
version: "3"
services:
bitcoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 6 months of block, your lightning node won't be able to see channel created 6 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=50000

8
docker-compose-generator/docker-fragments/opt-btc-save-storage-xs.yml

@ -0,0 +1,8 @@
version: "3"
services:
bitcoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 3 months of block, your lightning node won't be able to see channel created 3 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=25000

8
docker-compose-generator/docker-fragments/opt-btc-save-storage-xxs.yml

@ -0,0 +1,8 @@
version: "3"
services:
bitcoind:
environment:
# If you don't use Lightning Network, you want this
# This save about 2 weeks worth of block
BITCOIN_EXTRA_ARGS: prune=5000

8
docker-compose-generator/docker-fragments/opt-btc-save-storage.yml

@ -0,0 +1,8 @@
version: "3"
services:
bitcoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 1 years of block, your lightning node won't be able to see channel created 1 year since the time you start it.
BITCOIN_EXTRA_ARGS: prune=100000

8
docker-compose-generator/docker-fragments/opt-feathercoin-save-storage-s.yml

@ -0,0 +1,8 @@
version: "3"
services:
feathercoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 6 months of block, your lightning node won't be able to see channel created 6 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=50000

8
docker-compose-generator/docker-fragments/opt-feathercoin-save-storage-xs.yml

@ -0,0 +1,8 @@
version: "3"
services:
feathercoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 3 months of block, your lightning node won't be able to see channel created 3 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=25000

8
docker-compose-generator/docker-fragments/opt-feathercoin-save-storage-xxs.yml

@ -0,0 +1,8 @@
version: "3"
services:
feathercoind:
environment:
# If you don't use Lightning Network, you want this
# This save about 2 weeks worth of block
BITCOIN_EXTRA_ARGS: prune=5000

8
docker-compose-generator/docker-fragments/opt-feathercoin-save-storage.yml

@ -0,0 +1,8 @@
version: "3"
services:
feathercoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 1 years of block, your lightning node won't be able to see channel created 1 year since the time you start it.
BITCOIN_EXTRA_ARGS: prune=100000

8
docker-compose-generator/docker-fragments/opt-groestlcoin-save-storage-s.yml

@ -0,0 +1,8 @@
version: "3"
services:
groestlcoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 6 months of block, your lightning node won't be able to see channel created 6 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=50000

8
docker-compose-generator/docker-fragments/opt-groestlcoin-save-storage-xs.yml

@ -0,0 +1,8 @@
version: "3"
services:
groestlcoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 3 months of block, your lightning node won't be able to see channel created 3 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=25000

8
docker-compose-generator/docker-fragments/opt-groestlcoin-save-storage-xxs.yml

@ -0,0 +1,8 @@
version: "3"
services:
groestlcoind:
environment:
# If you don't use Lightning Network, you want this
# This save about 2 weeks worth of block
BITCOIN_EXTRA_ARGS: prune=5000

8
docker-compose-generator/docker-fragments/opt-groestlcoin-save-storage.yml

@ -0,0 +1,8 @@
version: "3"
services:
groestlcoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 1 years of block, your lightning node won't be able to see channel created 1 year since the time you start it.
BITCOIN_EXTRA_ARGS: prune=100000

9
docker-compose-generator/docker-fragments/opt-ltc-lnd-autopilot.yml

@ -0,0 +1,9 @@
version: "3"
services:
lnd_litecoin:
environment:
LND_EXTRA_ARGS: |
autopilot.active=1
autopilot.maxchannels=5
autopilot.allocation=0.6

8
docker-compose-generator/docker-fragments/opt-ltc-save-storage-s.yml

@ -0,0 +1,8 @@
version: "3"
services:
litecoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 6 months of block, your lightning node won't be able to see channel created 6 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=50000

8
docker-compose-generator/docker-fragments/opt-ltc-save-storage-xs.yml

@ -0,0 +1,8 @@
version: "3"
services:
litecoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 3 months of block, your lightning node won't be able to see channel created 3 months since the time you start it.
BITCOIN_EXTRA_ARGS: prune=25000

8
docker-compose-generator/docker-fragments/opt-ltc-save-storage-xxs.yml

@ -0,0 +1,8 @@
version: "3"
services:
litecoind:
environment:
# If you don't use Lightning Network, you want this
# This save about 2 weeks worth of block
BITCOIN_EXTRA_ARGS: prune=5000

8
docker-compose-generator/docker-fragments/opt-ltc-save-storage.yml

@ -0,0 +1,8 @@
version: "3"
services:
litecoind:
environment:
# If you don't use Lightning Network, use opt-save-store-xxs instead
# This save about 1 years of block, your lightning node won't be able to see channel created 1 year since the time you start it.
BITCOIN_EXTRA_ARGS: prune=100000
Loading…
Cancel
Save