123456789101112131415161718192021222324252627282930313233 |
- package server
- import (
- "fmt"
- "net/http"
- "github.com/docker/docker/pkg/version"
- )
- // getContainersByName inspects containers configuration and serializes it as json.
- func (s *Server) getContainersByName(version version.Version, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
- if vars == nil {
- return fmt.Errorf("Missing parameter")
- }
- var json interface{}
- var err error
- switch {
- case version.LessThan("1.20"):
- json, err = s.daemon.ContainerInspectPre120(vars["name"])
- case version.Equal("1.20"):
- json, err = s.daemon.ContainerInspect120(vars["name"])
- default:
- json, err = s.daemon.ContainerInspect(vars["name"])
- }
- if err != nil {
- return err
- }
- return writeJSON(w, http.StatusOK, json)
- }
|