build and run stuff

This commit is contained in:
2021-01-18 10:14:54 +01:00
parent 876c99d790
commit 8a0840dd70
5 changed files with 34 additions and 1 deletions

8
build.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
IMAGE_NAME="registry.hottis.de/hv/hv-service"
VERSION=0.0.1
docker build -t ${IMAGE_NAME}:${VERSION} .
docker push ${IMAGE_NAME}:${VERSION}