From 4a64302d624eaa281c00146a1a6288c5d922f471 Mon Sep 17 00:00:00 2001 From: wucm667 Date: Tue, 24 Feb 2026 16:35:06 +0800 Subject: [PATCH] chore: remove unused MongoDB init script volume mount - Removed ./docker/mongodb/init:/docker-entrypoint-initdb.d volume mount - The docker/mongodb/init directory never existed in the repository - MongoDB initialization is handled at the application layer (Beanie ODM + migration manager), not via Docker init scripts --- docker-compose.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 29407030..373f860b 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -14,7 +14,6 @@ services: - "27017:27017" volumes: - mongodb_data:/data/db - - ./docker/mongodb/init:/docker-entrypoint-initdb.d networks: - memsys-network healthcheck: