How do I update an app running in Docker?

0
10
Asked By CuriousCat321 On

I've got Piper and Whisper set up in Docker on a remote computer, and there's now an update available for Piper. I'm unsure how to properly update it within Docker. I learned how to set everything up from a YouTube tutorial, but I'm a bit lost on what to do next. Can anyone guide me through the update process?

1 Answer

Answered By TechieTom87 On

Updating an app in Docker isn’t about doing it inside the container itself. You have to pull the new image if there’s an update available for the base image you’re using (like Whisper). After you pull the new image, you need to recreate the container with the latest version. It’s also a good idea to get familiar with Docker basics; using Docker Compose can simplify things for you. Here's a great place to start learning: https://docs.docker.com/get-started/docker-overview/

UserQuestioner99 -

Is this on a production server? It sounds risky if it is.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.