1
0

bump mempool to v2.5.0 (#775)

* bump mempool to v2.5.0

* bump mempool to v2.5.0

* add mempool Lightning Explorer Support

just for local testing so far. Hopefully thats how it can be done.

* bump mariadb to 10.11

as there is no Dockerfile folder for just 10.

* fix strange docker-compose boolean problem

* rpc-file-mode=0666 for c-lightning socket

beware that this change is a risk when run outside a container.

* hopefully fix writable cache dir error

* remove mempool_api_datadir cache folder

* enable lightning for gui of mempool

* fix typo

* try readonly.macraoon instead of admin

* correct REST API URL and port

* fixed LND_REST Proto to http; increased LND_TIMEOUT because of errors on RPI
This commit is contained in:
Markus Petzsch
2023-05-23 07:46:00 +02:00
committed by GitHub
parent bf22e49f18
commit b3ece8c4cc
5 changed files with 49 additions and 24 deletions

View File

@@ -786,46 +786,46 @@ cd - && cd ..
# Build frontend
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/frontend/Dockerfile
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0/docker/frontend/Dockerfile
DOCKERFILE="docker/frontend/Dockerfile"
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/frontend/Dockerfile
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0/docker/frontend/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="docker/frontend/Dockerfile"
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/frontend/Dockerfile
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0/docker/frontend/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="docker/frontend/Dockerfile"
echo "Building mempool/frontend:v2.5.0-dev1"
echo "Building mempool/frontend:v2.5.0"
git clone https://github.com/mempool/mempool frontend
cd frontend
git checkout v2.5.0-dev1
git checkout v2.5.0
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "mempool/frontend:v2.5.0-dev1" .
docker build -f "$DOCKERFILE" -t "mempool/frontend:v2.5.0" .
cd - && cd ..
# Build backend
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/backend/Dockerfile
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0/docker/backend/Dockerfile
DOCKERFILE="docker/backend/Dockerfile"
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/backend/Dockerfile
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0/docker/backend/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="docker/backend/Dockerfile"
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0-dev1/docker/backend/Dockerfile
# https://raw.githubusercontent.com/mempool/mempool/v2.5.0/docker/backend/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="docker/backend/Dockerfile"
echo "Building mempool/backend:v2.5.0-dev1"
echo "Building mempool/backend:v2.5.0"
git clone https://github.com/mempool/mempool backend
cd backend
git checkout v2.5.0-dev1
git checkout v2.5.0
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "mempool/backend:v2.5.0-dev1" .
docker build -f "$DOCKERFILE" -t "mempool/backend:v2.5.0" .
cd - && cd ..
# Build mariadb
# https://raw.githubusercontent.com/docker-library/mariadb/master/10.5/Dockerfile
DOCKERFILE="10.5/Dockerfile"
echo "Building mariadb:10.5.8"
DOCKERFILE="10.11/Dockerfile"
echo "Building mariadb:10.11"
git clone https://github.com/docker-library/mariadb mariadb
cd mariadb
git checkout master
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "mariadb:10.5.8" .
docker build -f "$DOCKERFILE" -t "mariadb:10.11" .
cd - && cd ..