♻️ Change Docker instance to singleton

This commit is contained in:
Noan
2022-08-23 19:02:58 +02:00
parent dccfe7e2e3
commit 8edda19e05

View File

@@ -4,16 +4,13 @@ export default class DockerSingleton extends Docker {
private static dockerInstance: DockerSingleton;
private constructor() {
super({
host: '192.168.1.56',
port: 2376,
});
super();
}
public static getInstance(): DockerSingleton {
if (!this.dockerInstance) {
this.dockerInstance = new this();
if (!DockerSingleton.dockerInstance) {
DockerSingleton.dockerInstance = new DockerSingleton();
}
return this.dockerInstance;
return DockerSingleton.dockerInstance;
}
}