added script. fixed bad name for docker rep

This commit is contained in:
2025-05-05 16:30:40 -04:00
parent 8ad93a908a
commit 30c8120330
2 changed files with 22 additions and 0 deletions

20
build_and_push.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
# Set the name of the Docker Compose file
COMPOSE_FILE="docker-compose.build.yml"
# Build the images using docker-compose
echo "Building Docker images..."
docker-compose -f $COMPOSE_FILE build
# Check if the build was successful
if [ $? -eq 0 ]; then
echo "Build successful. Pushing images to Docker registry..."
# Push the images to the registry
docker-compose -f $COMPOSE_FILE push
else
echo "Build failed. Aborting push to registry."
exit 1
fi
echo "Images have been built and pushed to the Docker registry."