add feature to load docker image

This commit is contained in:
Torben Haack 2024-10-10 11:53:23 +02:00
parent 4b4e773686
commit 75a5553a11

View File

@ -1,5 +1,15 @@
#!/bin/bash
# Load the Docker image from the tar file
echo "Loading Docker image from $COMPOSE_FILE..."
docker load -i "docker/myp-rp_latest.tar.xz"
# Check if loading the image was successful
if [ $? -ne 0 ]; then
echo "Error occurred while loading Docker image"
exit 1
fi
# Execute docker compose
echo "Running docker compose..."
docker compose -f "$COMPOSE_FILE" up -d