Newer
Older
netbox-docker / build-functions / docker-functions.sh
@Tobias Genannt Tobias Genannt on 9 Apr 2020 199 bytes Let "latest" tag follow the highest version
#!/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}'."
}