mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
10 lines
190 B
Bash
Executable File
10 lines
190 B
Bash
Executable File
#!/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
|