Hey all… looking for some basic guidance…
I have made a bunch of docker instances (at home) on a physical machine (ClearLinux) with a dozen or so docker-run scripts… mounts, ports, net=host, etc…
but each container has to be updated with it’s own docker pull…
so coredns (for example);
docker rm coredns -f; docker system prune -af; sh /root/docker/docker-coredns; docker logs coredns -f
Is that the only way to upgrade a container… so if I have a dozen containers… do I have a dozen of those?
Is that the norm?
Thanks in advance…