1
0
This commit is contained in:
nicolas.dorier
2025-08-25 10:29:01 +09:00
parent cdb319d61f
commit 5b4329c33b
3 changed files with 8 additions and 8 deletions

View File

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