#!/usr/bin/php "no", "DOCKER_IMAGE_FILE" => "/mnt/user/system/docker/docker.img", "DOCKER_IMAGE_SIZE" => "20", "DOCKER_APP_CONFIG_PATH" => "/mnt/user/appdata/", "DOCKER_APP_UNRAID_PATH" => "" ]; $cfg_new = $cfg_defaults; if (file_exists($cfgfile)) { $cfg_old = parse_ini_file($cfgfile); if (!empty($cfg_old)) { $cfg_new = array_merge($cfg_defaults, $cfg_old); if (empty(array_diff($cfg_new, $cfg_old))) unset($cfg_new); } } if ($cfg_new) { foreach ($cfg_new as $key => $value) $tmp .= "$key=\"$value\"\n"; file_put_contents($cfgfile, $tmp); } ?>