Skip to content

Commit

Permalink
Update:Docker source skip binary manager check #3266
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Aug 10, 2024
1 parent 52a3bc2 commit 59370ca
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion server/Server.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,14 @@ class Server {

await this.playbackSessionManager.removeOrphanStreams()

await this.binaryManager.init()
/**
* Docker container ffmpeg/ffprobe binaries are included in the image.
* Docker is currently using ffmpeg/ffprobe v6.1 instead of v5.1 so skipping the check
* TODO: Support binary check for all sources
*/
if (global.Source !== 'docker') {
await this.binaryManager.init()
}

await Database.init(false)

Expand Down

0 comments on commit 59370ca

Please sign in to comment.