From 5ea96db8168ac263415ee92d5ddcf613d8539408 Mon Sep 17 00:00:00 2001 From: Luiz Fernando Oliveira dos Santos Date: Fri, 21 Nov 2025 17:57:32 -0300 Subject: [PATCH] fix(docker): bump docker api version to v1.44 --- app/server/config/integration/docker.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/server/config/integration/docker.ts b/app/server/config/integration/docker.ts index e3dd5bf..b9e2283 100644 --- a/app/server/config/integration/docker.ts +++ b/app/server/config/integration/docker.ts @@ -94,7 +94,7 @@ export default class DockerIntegration extends Integration { try { log.info('config', 'Checking API: %s', fetchU); - await fetch(new URL('/v1.30/version', fetchU).href); + await fetch(new URL('/v1.44/version', fetchU).href); } catch (error) { log.error('config', 'Failed to connect to Docker API: %s', error); log.debug('config', 'Connection error: %o', error); @@ -140,7 +140,7 @@ export default class DockerIntegration extends Integration { ); const res = await this.client.request({ method: 'GET', - path: `/v1.30/containers/json?${qp.toString()}`, + path: `/v1.44/containers/json?${qp.toString()}`, }); if (res.statusCode !== 200) { @@ -211,7 +211,7 @@ export default class DockerIntegration extends Integration { const response = await this.client.request({ method: 'POST', - path: `/v1.30/containers/${this.containerId}/restart`, + path: `/v1.44/containers/${this.containerId}/restart`, }); if (response.statusCode !== 204) {