1234567891011121314151617181920212223242526272829303132333435 |
- package server
- import (
- "fmt"
- "net/http"
- "github.com/docker/docker/context"
- )
- // getContainersByName inspects containers configuration and serializes it as json.
- func (s *Server) getContainersByName(ctx context.Context, 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
- version := ctx.Version()
- switch {
- case version.LessThan("1.20"):
- json, err = s.daemon.ContainerInspectPre120(ctx, vars["name"])
- case version.Equal("1.20"):
- json, err = s.daemon.ContainerInspect120(ctx, vars["name"])
- default:
- json, err = s.daemon.ContainerInspect(ctx, vars["name"])
- }
- if err != nil {
- return err
- }
- return writeJSON(w, http.StatusOK, json)
- }
|