mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2024-12-03 05:15:09 +01:00
8 lines
199 B
Bash
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}'."
|
||
|
}
|