authelia/example/kube/build_and_push.sh
2018-12-18 16:34:56 +01:00

10 lines
190 B
Bash

#!/bin/bash
build_and_push_authelia() {
cd ../../
docker build -t registry.kube.example.com:80/authelia .
docker push registry.kube.example.com:80/authelia
}
build_and_push_authelia