netbox-docker/build-functions/docker-functions.sh

9 lines
200 B
Bash
Raw Normal View History

#!/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}'."
2021-02-08 12:16:04 +01:00
}