Files
intelmq-docker/publish.sh
Kamil Mankowski a597fec2a9 Update to IntelMQ 3.2
Move from nosetests to pytest. Move from hug to FastAPI
2023-07-25 16:01:46 +02:00

18 lines
504 B
Bash
Executable File

#!/bin/bash
build_version="3.2.0"
namespace="certat"
docker login
docker tag intelmq-nginx:latest $namespace/intelmq-nginx:latest
docker push $namespace/intelmq-nginx:latest
docker tag intelmq-full:latest $namespace/intelmq-full:latest
docker tag intelmq-full:latest $namespace/intelmq-full:1.0
docker tag intelmq-full:latest $namespace/intelmq-full:$build_version
docker push $namespace/intelmq-full:latest
docker push $namespace/intelmq-full:1.0
docker push $namespace/intelmq-full:$build_version