mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
37 lines
775 B
Bash
37 lines
775 B
Bash
#!/bin/bash
|
|
|
|
IMAGE_NAME="openpanel"
|
|
REPOSITORY_IMG_NAME="openpanel/openpanel"
|
|
TAG="latest"
|
|
|
|
echo "Stopping existing OpenPanel container"
|
|
cd /root && docker compose down openpanel
|
|
|
|
echo "Deleting existing image "
|
|
docker image rm $IMAGE_NAME:$TAG
|
|
|
|
echo "Building the image..."
|
|
cd /root/2083/
|
|
docker build -t $IMAGE_NAME:$TAG .
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error: Docker image build failed."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Docker image built successfully."
|
|
|
|
echo "Starting container for testing..."
|
|
cd /root && docker compose up -d openpanel
|
|
|
|
sleep 5
|
|
|
|
echo "Testing the Flask app..."
|
|
curl -f http://localhost:2083 || {
|
|
echo "Error: Flask app did not start correctly."
|
|
cd /root && docker compose down openpanel
|
|
exit 1
|
|
}
|
|
|
|
echo "Flask app is running successfully in Docker."
|