Hi,
Great panel btw!
Now I have a few requests for docker to make it easier and better.
- An
always on
check would be nice to automatically start a container in case we need to restart the server. If there is already one, I couldn't find it.
Here's the config documentation for container settings from docker directly https://docs.docker.com/config/containers/start-containers-automatically/
I can set this option manually but it kinda defeats the purpose of having a manager. I checked the policy just in case it's on and it seems to be the default.
"RestartPolicy": {
"Name": "",
"MaximumRetryCount": 0
}
and after I manually modified it...
"RestartPolicy": {
"Name": "always",
"MaximumRetryCount": 0
}
- I would like to see the ability to add another docker server to the manager to share load. I thought that the IP address pool does this so I created another VPS purely for docker but I get an error if I want to create a container using that IP.
Or even add the ability to add ssh settings for another machine and manage it via the manager, or multiple.
Thanks in advance!