Sha256: 7ed06e35349e9c58b45a8a0738205683c62a6c60ea92d4b69bd0c1a4af21a692
Contents?: true
Size: 323 Bytes
Versions: 30
Compression:
Stored size: 323 Bytes
Contents
#!/usr/bin/env bash TAG="docker tag openstax/kitchen:latest openstax/kitchen:$1" PUSH="docker push openstax/kitchen:$1" echo "About to run the following:" echo $TAG echo $PUSH read -p "Are you sure? (Y/n) " -r echo # (optional) move to a new line if [[ $REPLY =~ ^[Yy]$ ]] then $TAG echo Tagged! $PUSH fi
Version data entries
30 entries across 30 versions & 1 rubygems