mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 23:21:08 +02:00
fix(infra): remove depends_on references to deleted backend services
Chat, Todo, Calendar, Contacts, Storage, ManaDeck, NutriPhi, Mukke backends were removed in previous sessions but their web services still had depends_on references, breaking docker compose. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
82fee019f6
commit
e35bbcd09b
1 changed files with 2 additions and 26 deletions
|
|
@ -494,7 +494,7 @@ services:
|
|||
environment:
|
||||
PORT: 3010
|
||||
DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD:-mana123}@postgres:5432/mana?sslmode=disable
|
||||
JWKS_URL: http://mana-core-auth:3001/api/v1/auth/jwks
|
||||
JWKS_URL: http://mana-auth:3001/api/v1/auth/jwks
|
||||
CORS_ORIGINS: "https://mana.how,https://*.mana.how"
|
||||
ports:
|
||||
- "3010:3010"
|
||||
|
|
@ -519,7 +519,7 @@ services:
|
|||
PORT: 3013
|
||||
DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD:-mana123}@postgres:5432/mana?sslmode=disable
|
||||
SERVICE_KEY: ${NOTIFY_SERVICE_KEY:-dev-service-key}
|
||||
MANA_CORE_AUTH_URL: http://mana-core-auth:3001
|
||||
MANA_CORE_AUTH_URL: http://mana-auth:3001
|
||||
SMTP_HOST: ${SMTP_HOST:-smtp-relay.brevo.com}
|
||||
SMTP_PORT: ${SMTP_PORT:-587}
|
||||
SMTP_USER: ${SMTP_USER:-}
|
||||
|
|
@ -855,9 +855,6 @@ services:
|
|||
image: ghcr.io/memo-2023/chat-web:latest
|
||||
container_name: mana-app-chat-web
|
||||
restart: always
|
||||
depends_on:
|
||||
chat-backend:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 5010
|
||||
|
|
@ -881,9 +878,6 @@ services:
|
|||
image: todo-web:local
|
||||
container_name: mana-app-todo-web
|
||||
restart: always
|
||||
depends_on:
|
||||
todo-backend:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 5011
|
||||
|
|
@ -932,9 +926,6 @@ services:
|
|||
image: calendar-web:local
|
||||
container_name: mana-app-calendar-web
|
||||
restart: always
|
||||
depends_on:
|
||||
calendar-backend:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 5012
|
||||
|
|
@ -985,9 +976,6 @@ services:
|
|||
image: contacts-web:local
|
||||
container_name: mana-app-contacts-web
|
||||
restart: always
|
||||
depends_on:
|
||||
contacts-backend:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 5014
|
||||
|
|
@ -1015,9 +1003,6 @@ services:
|
|||
image: storage-web:local
|
||||
container_name: mana-app-storage-web
|
||||
restart: always
|
||||
depends_on:
|
||||
storage-backend:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 5015
|
||||
|
|
@ -1063,9 +1048,6 @@ services:
|
|||
image: manadeck-web:local
|
||||
container_name: mana-app-manadeck-web
|
||||
restart: always
|
||||
depends_on:
|
||||
manadeck-backend:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 5023
|
||||
|
|
@ -1086,9 +1068,6 @@ services:
|
|||
image: ghcr.io/memo-2023/nutriphi-web:latest
|
||||
container_name: mana-app-nutriphi-web
|
||||
restart: always
|
||||
depends_on:
|
||||
nutriphi-backend:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 5017
|
||||
|
|
@ -1172,9 +1151,6 @@ services:
|
|||
image: mukke-web:local
|
||||
container_name: mana-app-mukke-web
|
||||
restart: always
|
||||
depends_on:
|
||||
mukke-backend:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 5024
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue