71 lines
2.2 KiB
Bash
Executable File
71 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Configuration
|
|
DOCKER_USERNAME="zimengxiong"
|
|
IMAGE_NAME="excalidash"
|
|
VERSION=${1:-$(node -e "try { console.log(require('fs').readFileSync('VERSION', 'utf8').trim()) } catch { console.log('latest') }")}
|
|
|
|
# Colors for output
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
NC='\033[0m' # No Color
|
|
|
|
echo -e "${GREEN}===========================================${NC}"
|
|
echo -e "${GREEN}ExcaliDash Multi-Platform Docker Builder${NC}"
|
|
echo -e "${GREEN}===========================================${NC}"
|
|
echo ""
|
|
|
|
# Check if logged in to Docker Hub
|
|
echo -e "${YELLOW}Checking Docker Hub authentication...${NC}"
|
|
if ! docker info | grep -q "Username: $DOCKER_USERNAME"; then
|
|
echo -e "${YELLOW}Not logged in. Please login to Docker Hub:${NC}"
|
|
docker login
|
|
else
|
|
echo -e "${GREEN}✓ Already logged in as $DOCKER_USERNAME${NC}"
|
|
fi
|
|
|
|
# Create buildx builder if it doesn't exist
|
|
echo -e "${YELLOW}Setting up buildx builder...${NC}"
|
|
if ! docker buildx inspect excalidash-builder > /dev/null 2>&1; then
|
|
echo -e "${YELLOW}Creating new buildx builder...${NC}"
|
|
docker buildx create --name excalidash-builder --use --bootstrap
|
|
else
|
|
echo -e "${GREEN}✓ Using existing buildx builder${NC}"
|
|
docker buildx use excalidash-builder
|
|
fi
|
|
|
|
# Build and push backend image
|
|
echo ""
|
|
echo -e "${GREEN}Building and pushing backend image...${NC}"
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64 \
|
|
--tag $DOCKER_USERNAME/$IMAGE_NAME-backend:$VERSION \
|
|
--tag $DOCKER_USERNAME/$IMAGE_NAME-backend:latest \
|
|
--file backend/Dockerfile \
|
|
--push \
|
|
backend/
|
|
|
|
echo -e "${GREEN}✓ Backend image pushed successfully${NC}"
|
|
|
|
# Build and push frontend image
|
|
echo ""
|
|
echo -e "${GREEN}Building and pushing frontend image...${NC}"
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64 \
|
|
--tag $DOCKER_USERNAME/$IMAGE_NAME-frontend:$VERSION \
|
|
--tag $DOCKER_USERNAME/$IMAGE_NAME-frontend:latest \
|
|
--file frontend/Dockerfile \
|
|
--push \
|
|
frontend/
|
|
|
|
echo -e "${GREEN}✓ Frontend image pushed successfully${NC}"
|
|
|
|
|
|
echo ""
|
|
echo -e "${GREEN}===========================================${NC}"
|
|
echo -e "${GREEN}✓ All images published successfully!${NC}"
|
|
echo -e "${GREEN}===========================================${NC}"
|
|
echo ""
|