Signed-off-by: Florian Eckert <redacted>
debug_path = uci:get("dockerd", "globals", "debug_path") or "/tmp/.docker_debug"
end
+ local status_path = uci:get("dockerd", "globals", "status_path") or "/tmp/.docker_status"
+
_docker.options = {
host = host,
port = port,
socket_path = socket_path,
debug = debug,
debug_path = debug_path,
- status_path = uci:get("dockerd", "globals", "status_path") or "/tmp/.docker_status"
+ status_path = status_path
}
local _new = docker.new(_docker.options)