NoIssue: Support for building runable docker container

This commit is contained in:
2025-12-27 22:28:39 +01:00
parent 0eed8a5fd4
commit 3bd4708e17
15 changed files with 207 additions and 20 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/bash
set -e
NAME=nenjimhub
VERSION=_VERSION__amd64
VTAG=dockerreg.r35157.com/r35157/${NAME}:${VERSION}
LTAG=dockerreg.r35157.com/r35157/${NAME}:latest
docker tag r35157/${NAME}:${VERSION} ${VTAG}
docker tag r35157/${NAME}:${VERSION} ${LTAG}
echo "Publishing of '${VTAG}' and '${LTAG}'..."
docker push ${VTAG}
docker push ${LTAG}
echo "Publishing completed!"