Restart Docker Container Without root privileges
from crony@lemmy.cronyakatsuki.xyz to selfhosted@lemmy.world on 07 Apr 2024 18:48
https://lemmy.cronyakatsuki.xyz/post/376401

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?

EDIT: I mention mumble specifically here, but this can apply to any server that requires manual reload of ssl keys, like postfix for example. I’m also not againd the idea of converting to something like kubernetes or even podman ( which would be harder cause of file permissions on all my binds ) if they can allow for woking on the container without root privileges.

#selfhosted

threaded - newest

redcalcium@lemmy.institute on 07 Apr 2024 19:10 next collapse

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 on 07 Apr 2024 19:59 collapse

Yea this seems like the most easy solution for mumble specifically.

iluminae@lemmy.world on 07 Apr 2024 19:19 next collapse

You could write a script that just restarts your container, make sure unprivileged users cannot edit it, and do one of two things:

  1. make a sudoers entry for your unprivileged account to call just that script as a user in the docker group with sudo
  2. use setuid on the script to have it execute from the docker group even when executed by users
ShawiniganHandshake@sh.itjust.works on 07 Apr 2024 20:38 collapse

Most shells ignore setuid on scripts for security reasons.

shrugal@lemm.ee on 07 Apr 2024 19:25 next collapse

Looks like you can create a simple binary executable and make it run as root with setuid.

jlh@lemmy.jlh.name on 07 Apr 2024 19:33 next collapse

Kubernetes has user accounts that you could use to restart containers in an unprivileged way. Create a role and role binding that gives the “delete Pod” permission to a service account. Kind makes it very easy to run Kubernetes without any setup. You’d just need to convert your docker compose files to Deployments, Services, and PersistentVolumes.

If converting to a kubernetes setup is too big of a leap, you could maybe try to write a C program that uses setuid to gain docker privileges in a restricted way.

Probably easiest to just have a cronjob that restarts the container regularly, though.

crony@lemmy.cronyakatsuki.xyz on 07 Apr 2024 20:02 collapse

I have been thinking about moving to kubernetes, this just adds gives me another notch into doing it.

jlh@lemmy.jlh.name on 08 Apr 2024 07:00 collapse

Yeah, there’s definitely a learning curve since it’s so different from docker, but there are some good tutorials and everything just makes sense. All the error messages are googlable and everything fits together so well.

tvcvt@lemmy.ml on 07 Apr 2024 20:26 next collapse

Not sure how your stack works together, but sudo will let you run particular commands as a different user and you can be pretty specific with the privileges. For example you can have a script that’s only allowed to run docker compose -f /path/to/compose.yml restart containername as a user in the docker group. Maybe there’s some docker-specific approach, but this should work with traditional Unix tools and a little scripting.

bjoern_tantau@swg-empire.de on 08 Apr 2024 16:30 next collapse

Did you think about automating the certificate generation? You could put everything into a cron script. That’s more or less the reason why certificates have such a short lifetime. To force automation.

crony@lemmy.cronyakatsuki.xyz on 08 Apr 2024 16:42 collapse

I am using it in a cron script, but the mumble server doesn’t support automatic reload of the ssl certs, so I need to restart tge mumblr server to load the new certs. That’s where my problem comes cause I run it inside docker.

redxef@feddit.de on 08 Apr 2024 19:06 next collapse

If a user is in the docker group they can also run docker commands.

raldone01@lemmy.world on 08 Apr 2024 21:33 collapse

Note: Adding a user to the docker is effectively root.

someonesmall@lemmy.ml on 08 Apr 2024 20:10 collapse

Create a sudo rule which allows the user to run only this exact command: “sudo docker restart mycontainer”