Files
k-notes/deploy.sh
2026-06-07 21:19:54 +02:00

10 lines
193 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
IMAGE="${IMAGE:-registry.gabrielkaszewski.dev/k-notes:latest}"
docker buildx build --platform linux/amd64 \
-t "$IMAGE" --push .
echo "pushed $IMAGE"