Initial Commit

This commit is contained in:
Anders Böttcher
2026-05-11 23:39:16 +02:00
parent 9dde8d8804
commit 50566f2a22
38 changed files with 5840 additions and 1015 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
# build.sh — Build the backerup-website Docker image.
# Usage: ./docker/build.sh [TAG]
# TAG defaults to "backerup-website:latest"
set -euo pipefail
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
TAG="${1:-backerup-website:latest}"
echo "==> Building image: $TAG"
docker build \
--file "$REPO_ROOT/docker/Dockerfile" \
--tag "$TAG" \
"$REPO_ROOT"
echo "==> Done. Image tagged as '$TAG'."