It’s usually good to state why something is good or bad
Comment on Restart an OOM killed docker automatically
atzanteol@sh.itjust.works 5 months agoI don’t know the best way
Apparently…
Don’t do this. Either don’t go OOM to begin with (somebody else told you how to limit container memory usage} and/or configure systemd to restart docker if it quits. I’m surprised systemd isn’t already.
GravitySpoiled@lemmy.ml 5 months ago
atzanteol@sh.itjust.works 5 months ago
It’s fairly obvious I feel.
You’re saying rather than use a system tool that does the exact thing that you want you should bodge together a cron job that accomplishes your goal but doesn’t actually do what you want.
Like say you want to stop the docker service for some reason?
systemctl stop docker
will do that. Then your cron job will restart it. That’s not the desired outcome. You want the service running IF the service SHOULD be running. Which is a different thing than “always running”.
RustyNova@lemmy.world 5 months ago
Seems like the best solution. I’ll look into it
atzanteol@sh.itjust.works 5 months ago
Over using a system tool designed to monitor and restart services that stop?
RustyNova@lemmy.world 5 months ago
? I’m agreeing with you?
atzanteol@sh.itjust.works 5 months ago
Sorry - was ambiguous and thought you were saying the “cron” thing sounded best.