diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-12-18 11:44:19 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2018-12-21 15:59:34 -0500 |
commit | c657dc4fdbca4b331d69e0910261e2cb11e2a629 (patch) | |
tree | fa75b6ecfbaf7c3c85ab7548fe1ac29d1612cf47 /libpod/container.go | |
parent | fe186c6ebba95db89463f38c6aa0f0dcc104a249 (diff) | |
download | podman-c657dc4fdbca4b331d69e0910261e2cb11e2a629.tar.gz podman-c657dc4fdbca4b331d69e0910261e2cb11e2a629.tar.bz2 podman-c657dc4fdbca4b331d69e0910261e2cb11e2a629.zip |
Switch all referencs to image.ContainerConfig to image.Config
This will more closely match what Docker is doing.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libpod/container.go b/libpod/container.go index 18d867f41..b4190344a 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -112,7 +112,7 @@ func (ns LinuxNS) String() string { // syncContainer() immediately after locking. // ffjson: skip type Container struct { - config *ContainerConfig + config *Config state *containerState @@ -199,11 +199,11 @@ type ExecSession struct { PID int `json:"pid"` } -// ContainerConfig contains all information that was used to create the +// Config contains all information that was used to create the // container. It may not be changed once created. // It is stored, read-only, on disk // easyjson:json -type ContainerConfig struct { +type Config struct { Spec *spec.Spec `json:"spec"` ID string `json:"id"` Name string `json:"name"` @@ -382,8 +382,8 @@ func (t ContainerStatus) String() string { // Unlocked // Config returns the configuration used to create the container -func (c *Container) Config() *ContainerConfig { - returnConfig := new(ContainerConfig) +func (c *Container) Config() *Config { + returnConfig := new(Config) deepcopier.Copy(c.config).To(returnConfig) return returnConfig |