bump nbxplorer
This commit is contained in:
@@ -368,6 +368,7 @@ namespace DockerFileBuildHelper
|
||||
case "nbxplorer":
|
||||
dockerInfo.DockerFilePath = "Dockerfile.linuxamd64";
|
||||
dockerInfo.DockerFilePathARM32v7 = "Dockerfile.linuxarm32v7";
|
||||
dockerInfo.DockerFilePathARM64v8 = "Dockerfile.linuxarm64v8";
|
||||
dockerInfo.GitLink = "https://github.com/dgarage/nbxplorer";
|
||||
dockerInfo.GitRef = $"v{image.Tag}";
|
||||
break;
|
||||
|
||||
@@ -332,16 +332,18 @@ cd - && cd ..
|
||||
|
||||
|
||||
# Build nbxplorer
|
||||
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.55/Dockerfile.linuxamd64
|
||||
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.56/Dockerfile.linuxamd64
|
||||
DOCKERFILE="Dockerfile.linuxamd64"
|
||||
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.55/Dockerfile.linuxarm32v7
|
||||
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.56/Dockerfile.linuxarm32v7
|
||||
[[ "$(uname -m)" == "armv7l" ]] && DOCKERFILE="Dockerfile.linuxarm32v7"
|
||||
echo "Building nicolasdorier/nbxplorer:2.0.0.55"
|
||||
# https://raw.githubusercontent.com/dgarage/nbxplorer/v2.0.0.56/Dockerfile.linuxarm64v8
|
||||
[[ "$(uname -m)" == "aarch64" ]] && DOCKERFILE="Dockerfile.linuxarm64v8"
|
||||
echo "Building nicolasdorier/nbxplorer:2.0.0.56"
|
||||
git clone https://github.com/dgarage/nbxplorer nbxplorer
|
||||
cd nbxplorer
|
||||
git checkout v2.0.0.55
|
||||
git checkout v2.0.0.56
|
||||
cd "$(dirname $DOCKERFILE)"
|
||||
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.0.0.55" .
|
||||
docker build -f "$DOCKERFILE" -t "nicolasdorier/nbxplorer:2.0.0.56" .
|
||||
cd - && cd ..
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user