From b837af4a28c0fae6ed5a97f142f2ab204dc3eee2 Mon Sep 17 00:00:00 2001 From: dekkku <161748598+dekkku@users.noreply.github.com> Date: Thu, 3 Apr 2025 00:09:11 +0530 Subject: [PATCH 1/2] fix(database): custom config for MongoDB (#5471) --- app/Actions/Database/StartMongodb.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Actions/Database/StartMongodb.php b/app/Actions/Database/StartMongodb.php index ff0233e62..a42f03eb5 100644 --- a/app/Actions/Database/StartMongodb.php +++ b/app/Actions/Database/StartMongodb.php @@ -181,6 +181,7 @@ class StartMongodb 'read_only' => true, ]] ); + $docker_compose['services'][$container_name]['command'] = ['mongod', '--config', '/etc/mongo/mongod.conf']; } $this->add_default_database(); From 30a45ad20251bafdbb33a1269ea42ade75f25db9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 2 Apr 2025 18:39:37 +0000 Subject: [PATCH 2/2] docs: update changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 953c70b4f..5048597b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### 🐛 Bug Fixes + +- *(database)* Custom config for MongoDB (#5471) + +### 📚 Documentation + +- Update changelog + +## [4.0.0-beta.402] - 2025-04-01 + ### 🚀 Features - *(deployments)* Add list application deployments api route