github.com/nullne/docker@v1.13.0-rc1/api/types/container/secret.go (about)

     1  package container
     2  
     3  import "os"
     4  
     5  // ContainerSecret represents a secret in a container.  This gets realized
     6  // in the container tmpfs
     7  type ContainerSecret struct {
     8  	Name   string
     9  	Target string
    10  	Data   []byte
    11  	UID    string
    12  	GID    string
    13  	Mode   os.FileMode
    14  }