Is there any reason not to use Docker instead of systemd? I like managing services with a simple docker-compose.yml on my server. It has worked great so far but I wonder if there are some downsides that I am not aware of. Performance doesn’t seem to be an issue, right?
spenczar5|2 years ago
Performance is not an issue in most docker setups you would ever use, correct.
WhatsName|2 years ago
I think it mostly comes down to what layer of abstraction you like working at.
john-shaffer|2 years ago
c-hendricks|2 years ago
I should really put my homelab setup somewhere.
AlexITC|2 years ago
Unnecessary overhead gets introduced with docker, for example, now you need to depend on a container-registry + the authentication to pull those images from the server + other stuff.
killthebuddha|2 years ago
stasmo|2 years ago
trufas|2 years ago
This seems like a perfect application of the init system.