1
0
mirror of https://github.com/netbox-community/netbox-docker.git synced 2025-08-08 15:02:05 +03:00
Files
netbox-docker/build-functions/docker-functions.sh
Tobias Genannt d84c399c00 Let "latest" tag follow the highest version
Latest tag is now added to the new version when it is release by Netbox.
2020-04-09 08:17:05 +02:00

8 lines
199 B
Bash

#!/bin/bash
push_image_to_registry() {
local target_tag=$1
echo "⏫ Pushing '${target_tag}'"
$DRY docker push "${target_tag}"
echo "✅ Finished pushing the Docker image '${target_tag}'."
}