caddy/build.sh
pika 9d952d0a70
Some checks failed
Build and Push to Forgejo Registry / build (push) Has been cancelled
addet workflows!
2025-04-06 20:41:55 +02:00

49 lines
1.2 KiB
Bash
Executable file

#!/usr/bin/env bash
# ─< Check if the given command exists silently >─────────────────────────────────────────
command_exists() {
command -v "$@" >/dev/null 2>&1
}
# ─< ANSI color codes >───────────────────────────────────────────────────────────────────
RED='\033[0;31m'
CYAN='\033[0;36m'
YELLOW='\033[0;33m'
LIGHT_GREEN='\033[0;92m'
BOLD='\033[1m'
NC='\033[0m' # No Color
echo_error() {
printf "${BOLD}${RED}ERROR: ${NC}${RED}%s${NC}\n" "$1" >&2
}
echo_info() {
printf "${BOLD}${CYAN}INFO: ${NC}${CYAN}%s${NC}\n" "$1"
}
echo_warning() {
printf "${BOLD}${YELLOW}WARNING: ${NC}${YELLOW}%s${NC}\n" "$1"
}
echo_note() {
printf "${BOLD}${LIGHT_GREEN}NOTE: ${NC}${LIGHT_GREEN}%s${NC}\n" "$1"
}
image=docker/caddy
domain=git.k4li.de
tag=latest
container="${domain}/${image}:${tag}"
# if ! command_exists docker; then
# echo_error "Docker does not exist!"
# exit 1
# fi
#
# [[ ! -e ./Dockerfile ]] &&
# echo_error "Dockerfile does not exist" &&
# exit 1
#
docker build -t "$container" .
docker push "$container"