From d8ac5e4daa128f37c40186ff845c3751a25b1b3c Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Tue, 27 Nov 2018 22:58:39 +0900 Subject: [PATCH] limit mempoolsize --- .../docker-fragments/opt-save-memory.yml | 24 ++++++++++++++----- 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/docker-compose-generator/docker-fragments/opt-save-memory.yml b/docker-compose-generator/docker-fragments/opt-save-memory.yml index ea75c5a..90a4479 100644 --- a/docker-compose-generator/docker-fragments/opt-save-memory.yml +++ b/docker-compose-generator/docker-fragments/opt-save-memory.yml @@ -4,19 +4,31 @@ version: "3" services: bitcoind: environment: - BITCOIN_EXTRA_ARGS: dbcache=200 + BITCOIN_EXTRA_ARGS: | + dbcache=150 + maxmempool=100 bgoldd: environment: - BITCOIN_EXTRA_ARGS: dbcache=200 + BITCOIN_EXTRA_ARGS: | + dbcache=150 + maxmempool=100 feathercoind: environment: - BITCOIN_EXTRA_ARGS: dbcache=200 + BITCOIN_EXTRA_ARGS: | + dbcache=150 + maxmempool=100 groestlcoind: environment: - BITCOIN_EXTRA_ARGS: dbcache=200 + BITCOIN_EXTRA_ARGS: | + dbcache=150 + maxmempool=100 litecoind: environment: - BITCOIN_EXTRA_ARGS: dbcache=200 + BITCOIN_EXTRA_ARGS: | + dbcache=150 + maxmempool=100 viacoind: environment: - BITCOIN_EXTRA_ARGS: dbcache=200 \ No newline at end of file + BITCOIN_EXTRA_ARGS: | + dbcache=150 + maxmempool=100 \ No newline at end of file