All checks were successful
docker-build / Build image (push) Successful in 37s
10 lines
171 B
Bash
Executable File
10 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TAG=$1
|
|
|
|
if [ -z "$TAG" ]; then
|
|
TAG=latest
|
|
fi
|
|
|
|
docker buildx build --platform linux/amd64,linux/arm64 --push -t git.realmanual.ru/pub/sqlite-backup:${TAG} .
|