Portainer 2.33.0 LTS has some fairly significant changes, and a couple of them are "breaking changes" for those using OliveTin-for-Channels and/or Orgainizr. Thanks to @Tolli for helping to uncover the one related to OliveTin.
If you're using OliveTin-for-Channels, and you upgrade to Portainer 2.33.0 LTS (whether manually or using Watchtower), you'll need to update your Olivetin Docker Compose to the latest version shown here (version 2025.08.25 as of this writing):
If you've been using Portainer in an iFrame with Organizr, you'll find this no longer works with Portainer 2.33.0 LTS. There are two ways to address this, the first is to disable the new Portainer Content Security Policy.
From the command line these should be the steps:
docker stop portainer
docker rm portainer
docker rmi portainer/portainer-ce:latest
docker run -d -p 9000:9000 -p 9443:9443 --name portainer \
--restart=always \
-e CSP=false \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer_data:/data \
portainer/portainer-ce:latest
If you're using remote Portainer Edge Agents (not likely for most), you'll also need -p 8000 above.
The other option is to reverse proxy Portainer using the Docker version of Caddy as described here:
And here: