Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/docker/compose
/ isAbsTarget
Function
isAbsTarget
pkg/compose/create.go:1190–1192 ·
view source on GitHub ↗
(p string)
Source
from the content-addressed store, hash-verified
1188
}
1189
1190
func
isAbsTarget(p string) bool {
1191
return
isUnixAbs(p) || isWindowsAbs(p)
1192
}
1193
1194
func
isUnixAbs(p string) bool {
1195
return
strings.HasPrefix(p,
"/"
)
Callers
3
setDefaultTarget
Method · 0.85
buildContainerConfigMounts
Function · 0.85
buildContainerSecretMounts
Function · 0.85
Calls
2
isUnixAbs
Function · 0.85
isWindowsAbs
Function · 0.85
Tested by
no test coverage detected