8 lines
157 B
Bash
Executable file
8 lines
157 B
Bash
Executable file
#!/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
|