fix and update

This commit is contained in:
lendry
2026-06-29 14:40:35 +03:00
parent 75ccbe5fc4
commit 0df7240dc8
21 changed files with 934 additions and 113 deletions

View File

@@ -92,7 +92,7 @@ services:
MINIO_SECRET_KEY: ${MINIO_ROOT_PASSWORD:-minioadmin}
MINIO_BUCKET: ${MINIO_BUCKET:-lendry-id}
MINIO_USE_SSL: ${MINIO_USE_SSL:-false}
PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3002/idp-api}
RABBITMQ_URL: amqp://${RABBITMQ_DEFAULT_USER:-lendry}:${RABBITMQ_DEFAULT_PASS:-lendry_password}@rabbitmq:5672/
LDAP_AUTH_URL: http://ldap-auth:8086
ports:
@@ -135,7 +135,7 @@ services:
MINIO_SECRET_KEY: ${MINIO_ROOT_PASSWORD:-minioadmin}
MINIO_BUCKET: ${MINIO_BUCKET:-lendry-id}
MINIO_USE_SSL: ${MINIO_USE_SSL:-false}
PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3002/idp-api}
ports:
- "127.0.0.1:3000:3000"
depends_on:
@@ -201,7 +201,7 @@ services:
dockerfile: apps/frontend/Dockerfile
args:
NPM_REGISTRY: ${NPM_REGISTRY:-https://registry.npmjs.org}
NEXT_PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
NEXT_PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3002/idp-api}
NEXT_PUBLIC_WS_URL: ${PUBLIC_WS_URL:-ws://localhost:8085/ws}
INTERNAL_API_URL: ${INTERNAL_API_URL:-http://api-gateway:3000}
INTERNAL_WS_URL: ${INTERNAL_WS_URL:-http://media-ws:8085}
@@ -211,7 +211,7 @@ services:
PORT: 3000
HOSTNAME: 0.0.0.0
NEXT_TELEMETRY_DISABLED: 1
NEXT_PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
NEXT_PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3002/idp-api}
NEXT_PUBLIC_WS_URL: ${PUBLIC_WS_URL:-ws://localhost:8085/ws}
INTERNAL_API_URL: ${INTERNAL_API_URL:-http://api-gateway:3000}
INTERNAL_WS_URL: ${INTERNAL_WS_URL:-http://media-ws:8085}
@@ -238,9 +238,9 @@ services:
container_name: lendry-id-tauri-apk-builder
restart: "no"
environment:
VITE_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
VITE_API_URL: ${PUBLIC_API_URL:-http://localhost:3002/idp-api}
VITE_FRONTEND_URL: ${PUBLIC_FRONTEND_URL:-http://localhost:3002}
PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3002/idp-api}
PUBLIC_FRONTEND_URL: ${PUBLIC_FRONTEND_URL:-http://localhost:3002}
volumes:
- ./apps/frontend/public/downloads:/out
@@ -252,7 +252,7 @@ services:
dockerfile: apps/docs/Dockerfile
args:
NPM_REGISTRY: ${NPM_REGISTRY:-https://registry.npmjs.org}
NEXT_PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
NEXT_PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3002/idp-api}
container_name: lendry-id-docs
restart: unless-stopped
depends_on:
@@ -262,7 +262,7 @@ services:
PORT: 3000
HOSTNAME: 0.0.0.0
NEXT_TELEMETRY_DISABLED: 1
NEXT_PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
NEXT_PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3002/idp-api}
INTERNAL_API_URL: http://api-gateway:3000
ports:
- "127.0.0.1:3003:3000"