garage-webui/misc/build-docker.sh
Adekabang 8eaee0be8c refactor: update project references from Adekabang to khairul169
- Change Docker image references in docker-compose.yml and documentation
- Update Go module path and import statements in backend code
- Modify build script to reflect new image name
- Remove outdated copyright information from LICENSE file
2025-09-29 20:26:44 -04:00

12 lines
296 B
Bash
Executable File

#!/bin/sh
set -e
IMAGE_NAME="khairul169/garage-webui"
PACKAGE_VERSION=$(cat package.json | grep \"version\" | cut -d'"' -f 4)
echo "Building version $PACKAGE_VERSION"
docker buildx build --platform linux/amd64,linux/arm64 \
-t "$IMAGE_NAME:latest" -t "$IMAGE_NAME:$PACKAGE_VERSION" --push .