nepsyn / minaplay

MinaPlay 是一个基于 RSS 订阅的追番 / 追剧个人媒体库。
https://nepsyn.github.io/minaplay
GNU Affero General Public License v3.0
159 stars 7 forks source link

[Bug] 无法启动 #100

Open Yuri-NagaSaki opened 3 months ago

Yuri-NagaSaki commented 3 months ago

现存的 issue 中存在您想提的问题吗

MinaPlay 版本

latest

问题定位

server 服务端

问题描述

容器无法启动 docker-compose.yml

version: '3.8'

services:
  minaplay-mysql:
    image: "mysql:8"
    container_name: minaplay-mysql
    networks:
      - minaplay-network
    environment:
      - TZ=Asia/Shanghai
      - MYSQL_ALLOW_EMPTY_PASSWORD=yes
      - MYSQL_DATABASE=minaplay
    restart: always
    volumes:
      - mysql-data:/var/lib/mysql

  minaplay-redis:
    image: "redis:latest"
    container_name: minaplay-redis
    networks:
      - minaplay-network
    restart: always

  minaplay:
    image: "nepsyn/minaplay:latest"
    container_name: minaplay
    networks:
      - minaplay-network
    volumes:
      - ./data:/app/data
    environment:
      - DB_HOST=minaplay-mysql
      - REDIS_HOST=minaplay-redis
      - MS_ANNOUNCED_IP=127.0.0.1  # 在需要放映室语音通话服务的情况下改为宿主机外部访问 IP
    ports:
      - "3000:3000"
      - "6234-6235:6234-6235"  
    depends_on:
      - minaplay-mysql
      - minaplay-redis
    restart: unless-stopped

volumes:
  mysql-data:

networks:
  minaplay-network:

系统日志

root@HostBrr-FI:~/MinaPlay# docker logs a93a692ba0b5
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [NestFactory] Starting Nest application...
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] PassportModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] ConfigHostModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] DiscoveryModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] AppModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] ConfigModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] BullModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] ScheduleModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] BullModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] JwtModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] BullModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] BullModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] CacheModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] SystemModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] TypeOrmCoreModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] TypeOrmModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] FileModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] UserModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] MediaModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] AuthorizationModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] PluginModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] LiveModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] SubscribeModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [InstanceLoader] NotificationModule dependencies initialized
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "info" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "join" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "state" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "members" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "chat" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "messages" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "revoke" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "mute-chat" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "unmute-chat" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "quit" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "kick" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "stream-client-sync" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "stream-server-push" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "stream-third-party" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "stop-stream" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "voice-rtp-capabilities" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "voice-get-producers" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "voice-create-webrtc-transport" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "voice-connect-webrtc-transport" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "voice-create-producer" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] LiveGateway subscribed to the "voice-create-consumer" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] PluginGateway subscribed to the "console" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [WebSocketsController] PluginGateway subscribed to the "commands" message
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] LiveStreamController {/api/v1/live}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/live/:id/stream.flv, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/live/:id/stream.m3u8, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] LiveController {/api/v1/live}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/live/:id, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/live, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/live, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/live/:id, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/live/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] AuthorizationController {/api/v1/auth}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/login, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/refresh, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/logout, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/password, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/user/create, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/user/:userId/logout, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/user/:userId/password, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/user/:userId/permission, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/user/:userId, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/permission, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/auth/logs, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] UserController {/api/v1/user}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/user/:id/profile, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/user/:id/profile, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/user, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] FileController {/api/v1/file}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/file/image, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/file/video, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/file/:id, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/file/:id/raw, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/file/:id/raw/:name, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/file/:id/download, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/file/:id/download/:name, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/file, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/file/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] ViewHistoryController {/api/v1/media/history}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media/history, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media/history, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] MediaController {/api/v1/media}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media/:id, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media/:id, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media/:id/history, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media/:id/history, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/media/:id/history, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] SeriesTagController {/api/v1/series/tag}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/tag, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/tag, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/tag, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] SeriesSubscribeController {/api/v1/series/subscribe}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/subscribe, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/subscribe, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] EpisodeController {/api/v1/series/episode}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/episode, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/episode/update, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/episode/:id, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/episode, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/episode/:id, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/episode/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] SeriesController {/api/v1/series}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/:id, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/:id, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/:id/subscribe, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/:id/subscribe, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/series/:id/subscribe, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] RuleController {/api/v1/subscribe/rule}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/rule, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/rule/:id, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/rule, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/rule/:id, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/rule/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/rule/:id/log, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/rule/:id/log, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] SourceController {/api/v1/subscribe/source}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source/:id, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source/:id, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source/:id/raw, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source/:id/run, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source/:id/log, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source/:id/log, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/source/:id/download, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] DownloadItemController {/api/v1/subscribe/download}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/download, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/download/:id, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/download/:id/retry, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/download/:id/pause, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/download/:id/unpause, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/download/:id/cancel, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/download, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/subscribe/download/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] NotificationController {/api/v1/notification}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/notification/adapters, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/notification, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/notification/:id, PUT} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/notification/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/notification/test, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/notification/bind, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] SystemController {/api/v1/system}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/system/status, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/system/update, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/system/logs, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/system/logs, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RoutesResolver] PluginController {/api/v1/plugins}:
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:pluginId/parser/:parser/calendar, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:pluginId/parser/:parser/series/:seriesId, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:pluginId/parser/:parser/series/:seriesId/subscribe, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:pluginId/parser/:parser/series/:seriesId/subscribe, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:pluginId/parser/:parser/series, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:pluginId/parser/:parser/series/:seriesId/episode, GET} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:id/enable, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:id/disable, POST} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:id, DELETE} route
[Nest] 14  - 05/25/2024, 3:34:05 PM     LOG [LiveStreamService] LiveStream service is running
[Nest] 14  - 05/25/2024, 3:34:05 PM   ERROR [MinaPlay] Uncaught rejection: Error: [pid:25, code:40, signal:null]
Error: [pid:25, code:40, signal:null]
    at ChildProcess.<anonymous> (/app/node_modules/mediasoup/node/lib/Worker.js:145:43)
    at ChildProcess.emit (node:events:519:28)
    at ChildProcess._handle.onexit (node:internal/child_process:294:12)
nepsyn commented 3 months ago

是否可以提供您的操作系统类型和版本和架构

Yuri-NagaSaki commented 3 months ago

是否可以提供您的操作系统类型和版本和架构

OS:Debian 12.5 X86 Docker version 26.1.3, build b72abbb

Yuri-NagaSaki commented 3 months ago

此外 服务器CPU为 5950X,128G内存情况下,编译时间花费185s

[+] Running 4/5 ✔ Network minaplay_minaplay-network Created 0.2s ✔ Volume "minaplay_mysql-data" Created 0.0s ✔ Container minaplay-mysql Started 1.9s ✔ Container minaplay-redis Started 1.9s ⠧ Container minaplay Starting 185.3s

vatebur commented 1 month ago

同样的报错 Intel(R) Core(TM) i3-7300 CPU @ 4.00GHz

$ uname -a
Linux debian 6.1.0-22-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.94-1 (2024-06-21) x86_64 GNU/Linux
$ cat /proc/version 
Linux version 6.1.0-22-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian 6.1.94-1 (2024-06-21)
$ cat /etc/debian_version 
12.6
$ getconf LONG_BIT
64
minaplay        | [Nest] 15  - 07/11/2024, 7:15:18 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:id/disable, POST} route
minaplay        | [Nest] 15  - 07/11/2024, 7:15:18 PM     LOG [RouterExplorer] Mapped {/api/v1/plugins/:id, DELETE} route
minaplay        | [Nest] 15  - 07/11/2024, 7:15:18 PM     LOG [LiveStreamService] LiveStream service is running
minaplay        | [Nest] 15  - 07/11/2024, 7:15:18 PM   ERROR [MinaPlay] Uncaught rejection: Error: [pid:26, code:40, signal:null]
minaplay        | Error: [pid:26, code:40, signal:null]
minaplay        |     at ChildProcess.<anonymous> (/app/node_modules/mediasoup/node/lib/Worker.js:145:43)
minaplay        |     at ChildProcess.emit (node:events:519:28)
minaplay        |     at ChildProcess._handle.onexit (node:internal/child_process:294:12)
vatebur commented 1 month ago
docker version

Client: Docker Engine - Community
 Version:           27.1.1
 API version:       1.46
 Go version:        go1.21.12
 Git commit:        6312585
 Built:             Tue Jul 23 19:57:19 2024
 OS/Arch:           linux/amd64
 Context:           default

Server: Docker Engine - Community
 Engine:
  Version:          27.1.1
  API version:      1.46 (minimum version 1.24)
  Go version:       go1.21.12
  Git commit:       cc13f95
  Built:            Tue Jul 23 19:57:19 2024
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          1.7.19
  GitCommit:        2bf793ef6dc9a18e00cb12efb64355c2c9d5eb41
 runc:
  Version:          1.7.19
  GitCommit:        v1.1.13-0-g58aa920
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0