2022-06-18 18:05:14 +03:00
|
|
|
#!/bin/bash
|
|
|
|
echo "Welcome!"
|
|
|
|
|
2022-06-18 18:31:01 +03:00
|
|
|
#version="1.0.6"
|
2022-06-18 18:05:14 +03:00
|
|
|
#platform="linux/amd64,linux/arm64"
|
2022-06-18 18:31:01 +03:00
|
|
|
version="1.0.6-arm64"
|
2022-06-18 18:05:14 +03:00
|
|
|
platform="linux/arm64"
|
2022-06-18 18:31:01 +03:00
|
|
|
localRegistryPass="***REMOVED***"
|
2022-06-18 18:05:14 +03:00
|
|
|
|
|
|
|
echo "Login to alpine-nexus registry."
|
|
|
|
docker login --username=admin --password=$localRegistryPass alpine-nexus:8500
|
|
|
|
|
|
|
|
echo "Create docker image with version $version for platform $platform"
|
|
|
|
docker image build --build-arg APP_VERSION=$version -t "network-resurrector-api:$version" -f "src/api/NetworkResurrector.Api/Docker/Dockerfile" .
|
|
|
|
docker buildx build \
|
|
|
|
--build-arg APP_VERSION=$version \
|
|
|
|
--platform $platform \
|
|
|
|
--output=type=image,push=true,registry.insecure=true \
|
|
|
|
--push \
|
|
|
|
--tag alpine-nexus:8500/network-resurrector/network-resurrector-api:$version \
|
|
|
|
-f "src/api/NetworkResurrector.Api/Docker/amd64/Dockerfile" .
|
|
|
|
|
|
|
|
echo "Done!"
|