global fix and add tauri app

This commit is contained in:
lendry
2026-06-26 13:56:54 +03:00
parent aa228d84eb
commit 3b05b7e4d4
50 changed files with 3947 additions and 80 deletions

View File

@@ -217,6 +217,8 @@ services:
INTERNAL_WS_URL: ${INTERNAL_WS_URL:-http://media-ws:8085}
ports:
- "127.0.0.1:3002:3000"
volumes:
- ./apps/frontend/public/downloads:/app/public/downloads:ro
depends_on:
api-gateway:
condition: service_healthy
@@ -226,6 +228,23 @@ services:
timeout: 5s
retries: 10
tauri-apk-builder:
pull_policy: build
build:
context: .
dockerfile: tauri_app/Dockerfile.apk
args:
NPM_REGISTRY: ${NPM_REGISTRY:-https://registry.npmjs.org}
container_name: lendry-id-tauri-apk-builder
restart: "no"
environment:
VITE_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
VITE_FRONTEND_URL: ${PUBLIC_FRONTEND_URL:-http://localhost:3002}
PUBLIC_API_URL: ${PUBLIC_API_URL:-http://localhost:3000}
PUBLIC_FRONTEND_URL: ${PUBLIC_FRONTEND_URL:-http://localhost:3002}
volumes:
- ./apps/frontend/public/downloads:/out
docs:
pull_policy: build
build: