diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-01-28 10:14:17 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-09 15:01:34 +0000 |
commit | 044139dca9acbcb662af31abcd3860e21b73d3ce (patch) | |
tree | a1af34113a9e0b4924533671a64ac579f59a3ca2 /libpod/container.go | |
parent | 6b7b4b03a888b2d87dd58d1e8048d2a5c7e6a36b (diff) | |
download | podman-044139dca9acbcb662af31abcd3860e21b73d3ce.tar.gz podman-044139dca9acbcb662af31abcd3860e21b73d3ce.tar.bz2 podman-044139dca9acbcb662af31abcd3860e21b73d3ce.zip |
Remove read-only from DB, it's in the spec
Don't need to store it separately
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #268
Approved by: rhatdan
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libpod/container.go b/libpod/container.go index ccf864826..06dca823a 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -106,8 +106,6 @@ type Container struct { } // TODO fetch IP and Subnet Mask from networks once we have updated OCICNI -// TODO enable pod support -// TODO Add readonly support // containerState contains the current state of the container // It is stored on disk in a tmpfs and recreated on reboot @@ -162,8 +160,6 @@ type ContainerConfig struct { RootfsImageName string `json:"rootfsImageName,omitempty"` // Whether to mount volumes specified in the image ImageVolumes bool `json:"imageVolumes"` - // Whether to make the container read only - ReadOnly bool `json:"readOnly"` // Src path to be mounted on /dev/shm in container ShmDir string `json:"ShmDir,omitempty"` // Size of the container's SHM |