mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
fix(insights): check if running in a container
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
6bc4c0317f
commit
906ac635c2
4 changed files with 17 additions and 5 deletions
|
@ -134,6 +134,7 @@ ENV ND_MUSICFOLDER=/music
|
||||||
ENV ND_DATAFOLDER=/data
|
ENV ND_DATAFOLDER=/data
|
||||||
ENV ND_PORT=4533
|
ENV ND_PORT=4533
|
||||||
ENV GODEBUG="asyncpreemptoff=1"
|
ENV GODEBUG="asyncpreemptoff=1"
|
||||||
|
RUN touch /.nddockerenv
|
||||||
|
|
||||||
EXPOSE ${ND_PORT}
|
EXPOSE ${ND_PORT}
|
||||||
HEALTHCHECK CMD wget -O- http://localhost:${ND_PORT}/ping || exit 1
|
HEALTHCHECK CMD wget -O- http://localhost:${ND_PORT}/ping || exit 1
|
||||||
|
|
|
@ -3,6 +3,7 @@ package consts
|
||||||
import (
|
import (
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
@ -134,3 +135,11 @@ var (
|
||||||
|
|
||||||
ServerStart = time.Now()
|
ServerStart = time.Now()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var InContainer = func() bool {
|
||||||
|
// Check if the /.nddockerenv file exists
|
||||||
|
if _, err := os.Stat("/.nddockerenv"); err == nil {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}()
|
||||||
|
|
|
@ -151,6 +151,7 @@ var staticData = sync.OnceValue(func() insights.Data {
|
||||||
|
|
||||||
// Build info
|
// Build info
|
||||||
data.Build.Settings, data.Build.GoVersion = buildInfo()
|
data.Build.Settings, data.Build.GoVersion = buildInfo()
|
||||||
|
data.OS.Containerized = consts.InContainer
|
||||||
|
|
||||||
// OS info
|
// OS info
|
||||||
data.OS.Type = runtime.GOOS
|
data.OS.Type = runtime.GOOS
|
||||||
|
|
|
@ -13,6 +13,7 @@ type Data struct {
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
Distro string `json:"distro,omitempty"`
|
Distro string `json:"distro,omitempty"`
|
||||||
Version string `json:"version,omitempty"`
|
Version string `json:"version,omitempty"`
|
||||||
|
Containerized bool `json:"containerized"`
|
||||||
Arch string `json:"arch"`
|
Arch string `json:"arch"`
|
||||||
NumCPU int `json:"numCPU"`
|
NumCPU int `json:"numCPU"`
|
||||||
} `json:"os"`
|
} `json:"os"`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue