mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:41:09 +02:00
fix(infra): change mana-notify port to 3042 (3041 used by citycorners)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
0bf5a90f12
commit
82de69476f
1 changed files with 8 additions and 8 deletions
|
|
@ -404,7 +404,7 @@ services:
|
|||
postgres:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
PORT: 3041
|
||||
PORT: 3042
|
||||
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
|
||||
|
|
@ -417,9 +417,9 @@ services:
|
|||
MATRIX_HOMESERVER_URL: http://mana-matrix-synapse:8008
|
||||
MATRIX_ACCESS_TOKEN: ${MATRIX_NOTIFY_BOT_TOKEN:-}
|
||||
ports:
|
||||
- "3041:3041"
|
||||
- "3042:3042"
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3041/health"]
|
||||
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3042/health"]
|
||||
interval: 120s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
|
|
@ -923,7 +923,7 @@ services:
|
|||
condition: service_healthy
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 3041
|
||||
PORT: 3042
|
||||
DATABASE_URL: postgresql://postgres:${POSTGRES_PASSWORD:-mana123}@postgres:5432/citycorners
|
||||
DB_HOST: postgres
|
||||
DB_PORT: 5432
|
||||
|
|
@ -933,9 +933,9 @@ services:
|
|||
CORS_ORIGINS: https://citycorners.mana.how,https://mana.how
|
||||
ADMIN_SERVICE_KEY: ${MANA_CORE_SERVICE_KEY}
|
||||
ports:
|
||||
- "3041:3041"
|
||||
- "3042:3042"
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3041/health"]
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3042/health"]
|
||||
interval: 120s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
|
|
@ -1491,7 +1491,7 @@ services:
|
|||
context: .
|
||||
dockerfile: apps/citycorners/apps/web/Dockerfile
|
||||
args:
|
||||
PUBLIC_BACKEND_URL: http://citycorners-backend:3041
|
||||
PUBLIC_BACKEND_URL: http://citycorners-backend:3042
|
||||
PUBLIC_MANA_CORE_AUTH_URL: http://mana-auth:3001
|
||||
image: citycorners-web:local
|
||||
container_name: mana-app-citycorners-web
|
||||
|
|
@ -1502,7 +1502,7 @@ services:
|
|||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 5022
|
||||
PUBLIC_BACKEND_URL: http://citycorners-backend:3041
|
||||
PUBLIC_BACKEND_URL: http://citycorners-backend:3042
|
||||
PUBLIC_MANA_CORE_AUTH_URL: http://mana-auth:3001
|
||||
PUBLIC_CITYCORNERS_API_URL_CLIENT: https://citycorners-api.mana.how
|
||||
PUBLIC_MANA_CORE_AUTH_URL_CLIENT: https://auth.mana.how
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue