29 lines
821 B
YAML
29 lines
821 B
YAML
# Shared-minio migration overlay (phase 1 of
|
|
# TeamHUB-Platform/docs/submodules/plans/2026-07-08-shared-minio-migration-prompt.md).
|
|
# Attaches ONLY api and worker to the shared teamhub_net so they can reach the
|
|
# platform MinIO (alias teamhub-minio) from container start. Unlike
|
|
# docker-compose.teamhub.yml this overlay does not strip host ports from data
|
|
# services and does not enable AUTH_REQUIRE_IDENTITY - local debug contour.
|
|
#
|
|
# Usage:
|
|
# docker compose -f docker-compose.yml -f docker-compose.shared-minio.yml up -d --no-deps api worker
|
|
|
|
networks:
|
|
teamhub_net:
|
|
external: true
|
|
name: teamhub_net
|
|
|
|
services:
|
|
api:
|
|
networks:
|
|
edge: {}
|
|
legacyhub_db: {}
|
|
teamhub_net:
|
|
aliases: [legacyhub-api]
|
|
|
|
worker:
|
|
networks:
|
|
edge: {}
|
|
legacyhub_db: {}
|
|
teamhub_net: {}
|