tag(项目):添加配置内容readme等

This commit is contained in:
OrangeRoll
2026-08-07 15:27:16 +08:00
parent 895dc39ce9
commit 0f82920df0
10 changed files with 239 additions and 9 deletions
+6 -6
View File
@@ -6,7 +6,7 @@ services:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
ports:
- "5432:5432"
- "127.0.0.1:5432:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
healthcheck:
@@ -23,11 +23,12 @@ services:
environment:
LIVEKIT_KEYS: "${LIVEKIT_API_KEY}: ${LIVEKIT_API_SECRET}"
ports:
- "7880:7880"
- "127.0.0.1:7880:7880"
- "7881:7881"
- "50000-50100:50000-50100/udp"
api:
image: screenshare-api:${SCREENSHARE_VERSION:-latest}
build:
context: ./apps/ScreenShareApi
env_file: .env
@@ -52,17 +53,16 @@ services:
postgres:
condition: service_healthy
ports:
- "8080:8080"
- "127.0.0.1:8080:8080"
web:
image: screenshare-web:${SCREENSHARE_VERSION:-latest}
build:
context: ./apps/ScreenShareWeb
environment:
VITE_API_PROXY_TARGET: http://api:8080
depends_on:
- api
ports:
- "5173:5173"
- "127.0.0.1:5173:80"
volumes:
postgres-data: