Add Docker command handling for backend options and refactor command building

This commit is contained in:
2025-09-24 21:34:54 +02:00
parent 76ac93bedc
commit 840a7bc650
2 changed files with 44 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ func (im *instanceManager) EvictLRUInstance() error {
im.mu.RLock()
var lruInstance *instance.Process
for name, _ := range im.runningInstances {
for name := range im.runningInstances {
inst := im.instances[name]
if inst == nil {
continue