Description
docker inspect does not reflect the presence of the docker run flag --rm.
Steps to reproduce the issue:
$ docker run --rm --name RMTEST alpine sleep 30 &
$ docker inspect RMTEST | grep AutoRemove
Results in:
But is expected to result in:
Output of docker version:
Client:
Version: 1.12.3
API version: 1.24
Go version: go1.6.3
Git commit: 6b644ec
Built: Wed Oct 26 22:01:48 2016
OS/Arch: linux/amd64
Server:
Version: 1.12.3
API version: 1.24
Go version: go1.6.3
Git commit: 6b644ec
Built: Wed Oct 26 22:01:48 2016
OS/Arch: linux/amd64
Output of docker info:
Containers: 2
Running: 2
Paused: 0
Stopped: 0
Images: 7
Server Version: 1.12.3
Storage Driver: aufs
Root Dir: /var/lib/docker/aufs
Backing Filesystem: extfs
Dirs: 46
Dirperm1 Supported: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host null overlay
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Security Options: apparmor seccomp
Kernel Version: 4.8.0-27-generic
Operating System: Ubuntu 16.10
OSType: linux
Architecture: x86_64
CPUs: 1
Total Memory: 5.827 GiB
Name: ubuntu
ID: ZV7B:4QI6:RY76:FIYD:MOQO:ZARK:5Q3X:JOHH:XGZP:NF3N:EZLU:J2YO
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Insecure Registries:
127.0.0.0/8
Description
docker inspectdoes not reflect the presence of thedocker runflag--rm.Steps to reproduce the issue:
$ docker run --rm --name RMTEST alpine sleep 30 &$ docker inspect RMTEST | grep AutoRemoveResults in:
But is expected to result in:
Output of
docker version:Output of
docker info: