diff --git a/README.md b/README.md index e8c607d..a224d4c 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,8 @@ Available `BTCPAYGEN_ADDITIONAL_FRAGMENTS` currently are: * [opt-save-storage-xs](docker-compose-generator/docker-fragments/opt-save-storage-xs.yml) will keep around 3 months of blocks (prune BTC for 25 GB) * [opt-save-storage-xxs](docker-compose-generator/docker-fragments/opt-save-storage-xxs.yml) will keep around 2 weeks of blocks (prune BTC for 5 GB) (lightning not supported) * [opt-lnd-autopilot](docker-compose-generator/docker-fragments/opt-lnd-autopilot.yml) will activate auto pilot on LND. (5 channels, 60% of allocation) -* [opt-save-memory](docker-compose-generator/docker-fragments/opt-save-memory.yml) will decrease the default dbcache at the expense of longer synchronization time (Useful if your machine is less than 2GB) +* [opt-save-memory](docker-compose-generator/docker-fragments/opt-save-memory.yml) will decrease the default dbcache at the expense of longer synchronization time. (Useful if your machine is less than 2GB) +* [opt-more-memory](docker-compose-generator/docker-fragments/opt-more-memory.yml) will increase the default dbcache to make synchronization faster (Useful if your machine is has around 4GB) * [opt-add-btcqbo](docker-compose-generator/docker-fragments/opt-add-btcqbo.yml) will allow you to create an invoice on Quickbooks which include a way for your customer to pay on BTCPay Server (More information on this [github repository](https://github.com/JeffVandrewJr/btcqbo/), this add-on is maintained by [JeffVandrewJr](https://github.com/JeffVandrewJr), see more on [this video](https://www.youtube.com/watch?v=srgwL9ozg6c)) * [opt-add-librepatron](docker-compose-generator/docker-fragments/opt-add-librepatron.yml), for a self-hosted Patreon alternative backed by BTCPay (More information on this [github repository](https://github.com/JeffVandrewJr/patron), this add-on is maintained by [JeffVandrewJr](https://github.com/JeffVandrewJr). * [opt-add-woocommerce](docker-compose-generator/docker-fragments/opt-add-woocommerce.yml), for a self-hosted woocommerce with BTCPay Server plugin pre installed. diff --git a/docker-compose-generator/docker-fragments/opt-moar-memory.yml b/docker-compose-generator/docker-fragments/opt-moar-memory.yml deleted file mode 100644 index ea75b8f..0000000 --- a/docker-compose-generator/docker-fragments/opt-moar-memory.yml +++ /dev/null @@ -1,32 +0,0 @@ -version: "3" -# If your machine has moar than 1GB of memory dedicated for bitcoind, use this - -services: - bitcoind: - environment: - BITCOIN_EXTRA_ARGS: | - dbcache=1024 - bgoldd: - environment: - BITCOIN_EXTRA_ARGS: | - dbcache=1024 - feathercoind: - environment: - BITCOIN_EXTRA_ARGS: | - dbcache=1024 - groestlcoind: - environment: - BITCOIN_EXTRA_ARGS: | - dbcache=1024 - litecoind: - environment: - BITCOIN_EXTRA_ARGS: | - dbcache=1024 - viacoind: - environment: - BITCOIN_EXTRA_ARGS: | - dbcache=1024 - monacoind: - environment: - BITCOIN_EXTRA_ARGS: | - dbcache=1024