Comment on Should I move to Docker?
xcjs@programming.dev 11 months agoThere’s a container web UI called Portainer, but I’ve never used it. It may be what you’re looking for.
I also use a container called Watchtower to automatically update my services. Granted there’s some risk there, but I wrote a script for backup snapshots in case I need to revert, and Docker makes that easy with image tags.
There’s another container called Autoheal that will restart containers with failed healthchecks. (Not every container has a built in healthcheck, but they’re easy to add with a custom Dockerfile or a docker-compose.)
Dyskolos@lemmy.zip 11 months ago
Thanks for the tips! But did i get it right here? A container can has access to other containers?
xcjs@programming.dev 11 months ago
The Docker client communicates over a UNIX socket. If you mount that socket in a container with a Docker client, it can communicate with the host’s Docker instance.
Dyskolos@lemmy.zip 11 months ago
Ah okay. Sounds safe enough. Thanks again :-)
xcjs@programming.dev 11 months ago
Of course!