Way to update scrypted without removing and replacing container. Way to do it through UI? #192
Replies: 3 comments 2 replies
-
Installing scrypted natively will let you do it through the UI. Containers are disposable in docker, which is why you set volumes for persistent data. The docker way is to pull a new image and recreate the service by taking down the container and replacing it with a new one using the new image you just pulled as it’s base. I highly recommend using docker compose to make life much easer. If you want automatic updates with docker, use watchtower or set up a cron job or something similar. |
Beta Was this translation helpful? Give feedback.
-
There's no way to do a docker update from outside of docker (within scrypted). |
Beta Was this translation helpful? Give feedback.
-
Fwiw, my docker install, added docker-compose and put c:\docker\docker\resources\bin (location of docker-compose) in the environment path so it can be run anywhere. In win, I update containers with docker-compose pull, run from cmd prompt after cd to folder with the docker-compose.yml file. I finally found out via Wyze-bridge discussion that it’s easier to use docker-compose and setup the yml file for each container in its own folder. Then just cd to each folder, then run, docker-compose pull, to update, then run docker-compose up -d, to run it. Then run docker image prune to remove the old image. Fwiw, I think the support for scrypted is about the worst I’ve come across so far. Wyze-bridge has an active developer and several users who offer really good support. |
Beta Was this translation helpful? Give feedback.
-
Way to update scrypted without removing and replacing container. Way to do it through UI?
Beta Was this translation helpful? Give feedback.
All reactions