mirror of
https://github.com/containers/podman.git
synced 2025-06-25 20:26:51 +08:00
Merge pull request #12381 from flouthoc/build-layer-docker-compat
compat: add layer caching compatiblity for `non-podman` clients.
This commit is contained in:
@ -134,6 +134,15 @@ func BuildImage(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if layers field not set assume its not from a valid podman-client
|
||||||
|
// could be a docker client, set `layers=true` since that is the default
|
||||||
|
// expected behviour
|
||||||
|
if !utils.IsLibpodRequest(r) {
|
||||||
|
if _, found := r.URL.Query()["layers"]; !found {
|
||||||
|
query.Layers = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// convert addcaps formats
|
// convert addcaps formats
|
||||||
var addCaps = []string{}
|
var addCaps = []string{}
|
||||||
if _, found := r.URL.Query()["addcaps"]; found {
|
if _, found := r.URL.Query()["addcaps"]; found {
|
||||||
|
@ -1523,6 +1523,13 @@ func (s *APIServer) registerImagesHandlers(r *mux.Router) error {
|
|||||||
// JSON map of key, value pairs to set as labels on the new image
|
// JSON map of key, value pairs to set as labels on the new image
|
||||||
// (As of version 1.xx)
|
// (As of version 1.xx)
|
||||||
// - in: query
|
// - in: query
|
||||||
|
// name: layers
|
||||||
|
// type: boolean
|
||||||
|
// default: true
|
||||||
|
// description: |
|
||||||
|
// Cache intermediate layers during build.
|
||||||
|
// (As of version 1.xx)
|
||||||
|
// - in: query
|
||||||
// name: networkmode
|
// name: networkmode
|
||||||
// type: string
|
// type: string
|
||||||
// default: bridge
|
// default: bridge
|
||||||
|
Reference in New Issue
Block a user