This commit is contained in:
2021-01-25 21:52:52 +01:00
commit b88dec12d3
9 changed files with 240 additions and 0 deletions

8
build.sh Executable file
View File

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