handy-debian-scripts/update_yacreader_library.sh
2025-02-18 22:47:49 -07:00

23 lines
627 B
Bash
Executable File

#!/bin/bash
# Variables
CONTAINER_NAME="yacreader"
LIBRARY_PATH="/comics"
COMMAND="YACReaderLibraryServer update-library"
# Check if the container is running
if docker ps --format "{{.Names}}" | grep -q "^$CONTAINER_NAME$"; then
echo "Container '$CONTAINER_NAME' is running. Executing the update command..."
docker exec "$CONTAINER_NAME" $COMMAND "$LIBRARY_PATH"
if [ $? -eq 0 ]; then
echo "Library update completed successfully."
else
echo "An error occurred while updating the library."
exit 1
fi
else
echo "Error: Container '$CONTAINER_NAME' is not running."
exit 1
fi