Fix DNS2 self-updater path and sync live dashboard version UI

This commit is contained in:
Krystie
2026-05-05 17:26:42 -07:00
parent f5fe32b999
commit 95b137bf17
5 changed files with 20 additions and 10 deletions

View File

@@ -256,7 +256,9 @@ module.exports = function({ docker, caddy, servicesStateManager, portLockManager
const existing = docker.client.getContainer(containerName);
await existing.remove({ force: true });
await new Promise(r => setTimeout(r, 1000));
} catch (_) {}
} catch (_) {
// No stale container to remove
}
const container = await docker.client.createContainer(containerConfig);
await container.start();