Files
databunker/docker-build-push.sh
2024-08-05 17:04:07 +03:00

8 lines
264 B
Bash
Executable File

#!/bin/sh
VERSION=$(cat ./version.txt)
docker build -t securitybunker/databunker:$VERSION .
docker tag securitybunker/databunker:$VERSION securitybunker/databunker:latest
docker push securitybunker/databunker:$VERSION
docker push securitybunker/databunker:latest