mirror of
https://github.com/certat/intelmq-docker.git
synced 2026-04-24 13:42:10 +02:00
a597fec2a9
Move from nosetests to pytest. Move from hug to FastAPI
18 lines
504 B
Bash
Executable File
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
|