1
0

downgrade NBX

This commit is contained in:
nicolas.dorier
2024-06-15 04:33:06 +09:00
parent 8a62590c00
commit f23a2b254d
3 changed files with 8 additions and 8 deletions

View File

@@ -384,18 +384,18 @@ cd - && cd ..
# Build nbxplorer
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.5/Dockerfile
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.2/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.5/Dockerfile
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.2/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.5/Dockerfile
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.2/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building nicolasdorier/nbxplorer:2.5.5"
echo "Building nicolasdorier/nbxplorer:2.5.2"
git clone https://github.com/dgarage/nbxplorer nbxplorer
cd nbxplorer
git checkout v2.5.5
git checkout v2.5.2
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.5.5" .
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.5.2" .
cd - && cd ..