From ca6a93fdf6188e43c82d3b6cb9f944117936ffe6 Mon Sep 17 00:00:00 2001 From: Thomas Camlong Date: Thu, 9 Oct 2025 16:09:13 +0200 Subject: [PATCH] feat: Bump default MongoDB docker image version to 7 The previous version of this file used `mongo:6` which reached EOL on July 1st 2025 More at : https://www.mongodb.com/legal/support-policy/lifecycles --- apps/dokploy/components/dashboard/project/add-database.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/components/dashboard/project/add-database.tsx b/apps/dokploy/components/dashboard/project/add-database.tsx index 064e93544..c0600a2d9 100644 --- a/apps/dokploy/components/dashboard/project/add-database.tsx +++ b/apps/dokploy/components/dashboard/project/add-database.tsx @@ -55,7 +55,7 @@ import { api } from "@/utils/api"; type DbType = typeof mySchema._type.type; const dockerImageDefaultPlaceholder: Record = { - mongo: "mongo:6", + mongo: "mongo:7", mariadb: "mariadb:11", mysql: "mysql:8", postgres: "postgres:15",