mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-26 18:53:58 -05:00
16 lines
234 B
Bash
16 lines
234 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Push our Docker image our Docker Hub.
|
||
|
#
|
||
|
|
||
|
# Errors are fatal
|
||
|
set -e
|
||
|
|
||
|
# Change to the parent directory of this script
|
||
|
pushd $(dirname $0)/.. > /dev/null
|
||
|
|
||
|
docker tag diceware dmuth1/diceware
|
||
|
docker push dmuth1/diceware
|
||
|
|
||
|
|