1
0
This commit is contained in:
nicolas.dorier
2025-04-04 22:31:33 +09:00
parent 4053153be3
commit c09f6513b5
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.16/Dockerfile
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.24/Dockerfile
DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.16/Dockerfile
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.24/Dockerfile
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile"
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.16/Dockerfile
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.5.24/Dockerfile
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile"
echo "Building nicolasdorier/nbxplorer:2.5.16"
echo "Building nicolasdorier/nbxplorer:2.5.24"
git clone https://github.com/dgarage/nbxplorer nbxplorer
cd nbxplorer
git checkout v2.5.16
git checkout v2.5.24
cd "$(dirname $DOCKERFILE)"
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.5.16" .
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.5.24" .
cd - && cd ..