fix(insights): check if running in a container

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2024-12-19 17:54:19 -05:00
parent 6bc4c0317f
commit 906ac635c2
4 changed files with 17 additions and 5 deletions

View file

@ -3,6 +3,7 @@ package consts
import (
"crypto/md5"
"fmt"
"os"
"path/filepath"
"strings"
"time"
@ -134,3 +135,11 @@ var (
ServerStart = time.Now()
)
var InContainer = func() bool {
// Check if the /.nddockerenv file exists
if _, err := os.Stat("/.nddockerenv"); err == nil {
return true
}
return false
}()