From 8265056d2494a1be0241a79cb421d8659b26e4c6 Mon Sep 17 00:00:00 2001 From: johnhkchen Date: Wed, 22 Oct 2025 14:17:11 -0700 Subject: [PATCH] Add shared network configuration for Directus-MinIO communication MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes: - Connect MinIO to Directus network (fs4w08s00ccgskog08k4wg4w) - Enable direct container-to-container communication - Allows Directus to access MinIO via http://minio:9000 endpoint This fixes the networking isolation issue where Directus and MinIO were on separate Docker networks and couldn't communicate internally. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- docker-compose.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index a625490..888986c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -47,6 +47,15 @@ services: retries: 3 start_period: 10s + networks: + - default + - directus_network + +networks: + directus_network: + external: true + name: fs4w08s00ccgskog08k4wg4w + volumes: minio_data: name: minio_data