From 38b9bcb245033495bff59106e118a30c43afaf10 Mon Sep 17 00:00:00 2001 From: Bill Date: Tue, 17 Sep 2024 21:55:15 -0400 Subject: [PATCH] Removed rocksdb --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2150baf..17d3629 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,9 @@ WORKDIR / RUN apt-get update -RUN apt-get -y install git python3.10 python3-pip librocksdb-dev libsnappy-dev libbz2-dev libz-dev liblz4-dev +RUN apt-get -y install git python3.10 python3-pip libsnappy-dev libbz2-dev libz-dev liblz4-dev -RUN pip3 install multidict aiohttp pylru python-rocksdb ujson +RUN pip3 install multidict aiohttp pylru ujson RUN git clone -b $VERSION https://github.com/spesmilo/electrumx.git @@ -20,7 +20,7 @@ ENV COIN=BitcoinSV ENV DB_DIRECTORY=/db ENV DAEMON_URL="http://username:password@hostname:port/" ENV ALLOW_ROOT=true -ENV DB_ENGINE=rocksdb +ENV DB_ENGINE=leveldb ENV MAX_SEND=10000000 ENV BANDWIDTH_UNIT_COST=50000 ENV CACHE_MB=2000