🐛 fix bug where Docker containers still show on refresh if socket is unreachable

This commit is contained in:
Noan
2022-08-23 20:01:28 +02:00
parent db42474ed1
commit 26ce7ac895

View File

@@ -4,10 +4,7 @@ export default class DockerSingleton extends Docker {
private static dockerInstance: DockerSingleton; private static dockerInstance: DockerSingleton;
private constructor() { private constructor() {
super({ super();
host: '192.168.1.56',
port: 2377,
});
} }
public static getInstance(): DockerSingleton { public static getInstance(): DockerSingleton {