Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
a60d9b89
Unverified
Commit
a60d9b89
authored
Sep 05, 2024
by
Daniel Hiltgen
Committed by
GitHub
Sep 05, 2024
Browse files
Detect running in a container (#6495)
parent
bf612cd6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
server/images.go
server/images.go
+23
-1
No files found.
server/images.go
View file @
a60d9b89
package
server
import
(
"bufio"
"bytes"
"cmp"
"context"
...
...
@@ -17,10 +18,12 @@ import (
"net/url"
"os"
"path/filepath"
"regexp"
"runtime"
"slices"
"strconv"
"strings"
"sync"
"github.com/ollama/ollama/api"
"github.com/ollama/ollama/auth"
...
...
@@ -1087,7 +1090,7 @@ func makeRequest(ctx context.Context, method string, requestURL *url.URL, header
}
}
req
.
Header
.
Set
(
"User-Agent"
,
fmt
.
Sprintf
(
"ollama/%s (%s %s) Go/%s"
,
version
.
Version
,
runtime
.
GOARCH
,
runtime
.
GOOS
,
runtime
.
Version
()))
req
.
Header
.
Set
(
"User-Agent"
,
fmt
.
Sprintf
(
"ollama/%s (%s %s) Go/%s
%s
"
,
version
.
Version
,
runtime
.
GOARCH
,
runtime
.
GOOS
,
runtime
.
Version
()
,
deployment
()
))
if
s
:=
req
.
Header
.
Get
(
"Content-Length"
);
s
!=
""
{
contentLength
,
err
:=
strconv
.
ParseInt
(
s
,
10
,
64
)
...
...
@@ -1162,3 +1165,22 @@ func verifyBlob(digest string) error {
return
nil
}
var
deployment
=
sync
.
OnceValue
(
func
()
string
{
if
runtime
.
GOOS
==
"linux"
{
file
,
err
:=
os
.
Open
(
"/proc/1/cgroup"
)
if
err
!=
nil
{
return
""
}
defer
file
.
Close
()
anchorPoint
:=
regexp
.
MustCompile
(
"0::/.*/"
)
scanner
:=
bufio
.
NewScanner
(
file
)
for
scanner
.
Scan
()
{
line
:=
scanner
.
Text
()
if
anchorPoint
.
MatchString
(
line
)
{
return
" container"
}
}
}
return
""
})
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment