Upgrade & Maintenance
Let’s remove the container, remember your data stays in the data directory.
Since we used the name pizug-companion
in the install we are reusing the same name:
docker stop pizug-companion
docker rm pizug-companion
Then we can pull the latest version:
docker pull pizug/companion
Or we can specify the version (recommended for production):
docker pull pizug/companion:v1.1.0
Then we can run it giving the same data directory and port:
docker run -d --name pizug-companion -p 3000:8080 -v "/Users/fatihpense/dev/companion_data:/data" --restart=always pizug/companion