docker-certbot-nginx/build-and-push.sh

9 lines
157 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
set -e
ORG=askiiart
NAME=certbot-nginx
ID=$(docker build . -q)
docker tag ${ID} ${ORG}/${NAME}:latest
docker push ${ORG}/${NAME}:latest