You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'd like to deploy the webmin as a docker container, so I don't have to install it manually
Describe the solution you'd like
create a container
share a folder with netatalk where the config folder is accessed
Describe alternatives you've considered
to restart netatalk after the config changes, you can issue a command to the netatalk container
To do this you must install Docker daemon in the webmin container by mounting the Docker socket
docker run -v /var/run/docker.sock:/var/run/docker.sock -it webmin-container-name
then you can run docker commands from webmin like:
Is your feature request related to a problem? Please describe.
I'd like to deploy the webmin as a docker container, so I don't have to install it manually
Describe the solution you'd like
create a container
share a folder with netatalk where the config folder is accessed
Describe alternatives you've considered
to restart netatalk after the config changes, you can issue a command to the netatalk container
To do this you must install Docker daemon in the webmin container by mounting the Docker socket
docker run -v /var/run/docker.sock:/var/run/docker.sock -it webmin-container-name
then you can run docker commands from webmin like:
docker kill --signal=SIGHUP netatalk-container-name (or id)
Be aware that exposing docker sockets is considered insecure in a production environment or in an uncontrolled network.
Additional context
optionally you can add a parallel task in the netatalk container that restarts it when the config file changes
The text was updated successfully, but these errors were encountered: