In hindsight, I should have created a separate branch for the V2. I did not think about people using Watchtower and having the updated image not work for them. I am sorry for any issues with that. Sometimes I get a little ahead of myself. If anyone runs into an issue with V2 messing up their stored logos, you can add run this to restore the original image and have access to your stored Logos. You will not need to change the volume:
docker run -d --restart unless-stopped --name logo-manager -p 8084:8084 -v tv-logo-data:/app/data rcvaughn2/tv-logo-manager:original
. If you want to run both versions, change the port, name and volume name of one of them so they do not conflict with each other. Example
docker run -d \
--restart unless-stopped \
--name logo-manager-v2 \
-p 8184:8084 \
-v tv-logo-data-v2:/app/data \
-e CLOUDINARY_CLOUD_NAME='YOUR_CLOUD_NAME' \
-e CLOUDINARY_API_KEY='YOUR_API_KEY' \
-e CLOUDINARY_API_SECRET='YOUR_API_SECRET' \
rcvaughn2/tv-logo-manager
Sorry for any issues that may arise.

