github.com/eljojo/docker@v1.6.0-rc4/api/types/types.go (about)

     1  package types
     2  
     3  // ContainerCreateResponse contains the information returned to a client on the
     4  // creation of a new container.
     5  type ContainerCreateResponse struct {
     6  	// ID is the ID of the created container.
     7  	ID string `json:"Id"`
     8  
     9  	// Warnings are any warnings encountered during the creation of the container.
    10  	Warnings []string `json:"Warnings"`
    11  }