What is the best way to update from 1.0.17 to 1.0.18?
Thanks
On my QNAP Nas I run this script.
docker stop pluto-for-channels
docker rm pluto-for-channels
docker image pull jonmaddox/pluto-for-channels
docker run -d --restart unless-stopped --name pluto-for-channels -p 88:80 jonmaddox/pluto-for-channels
This is the way.
That's similar to mine:
podman stop pluto
podman rm pluto
podman pull docker.io/jonmaddox/pluto-for-channels
podman create --pod media --name pluto --restart always jonmaddox/pluto-for-channels
podman start pluto
Yay, a fellow podman user!
I recently transitioned my Brix from running all my services in systemd-nspawn
containers on Arch, to similarly purposed Podman pods on Fedora. It's a bit of a paradigm shift, but lower maintenance. And having each pod with its own macvlan network and stable MAC address makes backups and migrations much easier.
Will this work in Windows 10 CMD window?
I'm getting "Error response from daemon: open \.\pipe\docker_engine_linux: The system cannot find the file specified."
docker container stop pluto-for-channels
Never Mind, It helps if docker is running... smh.
Very new to all of this. I'm not even sure how I got the docker running in the first place. How would I update it on Windows 10?
I shutdown the Docker Container deleted the Image in Docker and ran the below ....
docker run -d --restart unless-stopped --name pluto-for-channels -p 8080:80 jonmaddox/pluto-for-channels
I updated to the latest and for some reason, my guide for Pluto isn't coming up. I'm running the docker and appears to be working.
I try to run that command in cmd window and get invalid reference format. Was able to stop the image, and delete the old one and redos load the new one, but cannot start it this way. Using docker desktop for windows 10. I can manually start it and set the port to start in the ui, but I want the option for it to restart without me having to manually do it when the server reboots
i have everything running but get connection refused.
What URL are you trying to load when you get connection refused?
localhost:8080 and 127.0.0.1:8080 I also tried my ip:8080
Did you use these port settings in the command?
If so, 8080 would be correct. Obviously the IP address has to be correct as well. Does the Docker container show it’s up and running?
I used ```
docker run -d --restart unless-stopped --name pluto-for-channels -p 8080:80 jonmaddox/pluto-for-channels
How do I validate docker is online?
http://ipwhere_docker_is_running:8080
You can use docker ps
to see what containers are running.