Hello, I have a mumble server running as a docker container.
I’m using lego to generate let’s encrypt certificates using dns challenge as an unprivileged user.
My problem is that I need to restart the mumble server so that it can reload the ssl certificate, which means restarting the docker container.
Is there any way to do this withuot adding the user to docker group, since there are security issues with that group where it’s easy to escalate to a root user.
I thought about maybe a user level systemd service could be able to do it, but wan’t to hear your opinions?
redcalcium@lemmy.institute 7 months ago
I think you can send a SIGUSR1 signal to mumble process to tell it to reload the ssl certificate without actually restarting mumble’s process. You can use
docker kill --signal=“SIGUSR1” <container name or id>
, but then you still need to give your user access to docker group. Maybe you can setup a monthly cron on root user to run that command every months?crony@lemmy.cronyakatsuki.xyz 7 months ago
Yea this seems like the most easy solution for mumble specifically.