Plex - The Docke container compose script from the Marius Hosting site has an updated healthcheck.

My Docker compose script for the test servers that I've been running and making tutorial videos about came from the Marius Hosting site with his Synology and Ugreen guides, and has now changed. The old script of... healthcheck: test: wget --no-verbose --tries=1 --spider http://localhost:32400/web Now reports the Plex container as unhealthy after the latest Plex Server update earlier in the week. Replace that script with this to see a healthy Plex container spin up. healthcheck: test: ["CMD", "curl", "-fsS", "http://localhost:32400/identity"] interval: 30s timeout: 10s retries: 3 start_period: 60s