Error response from daemon: layer does not exist

Hello,
when trying to execute docker run hello-world I get the following error message:
docker: Error response from daemon: layer does not exist.

My OS is Oracle Linux 7.4, using UEK4 (Supported to use CE version per https://blogs.oracle.com/linux/announcing-the-release-of-docker-1703-ce)

Docker version gives me the following:
[opc@andydocker ~]$ sudo docker version
Client:
Version: 17.03.1-ce
API version: 1.27
Go version: go1.7.5
Git commit: 276fd32
Built: Fri Jun 23 20:13:39 2017
OS/Arch: linux/amd64

Server:
Version: 17.03.1-ce
API version: 1.27 (minimum version 1.12)
Go version: go1.7.5
Git commit: 276fd32
Built: Fri Jun 23 20:13:39 2017
OS/Arch: linux/amd64
Experimental: false

Docker info gives this:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 17.03.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: false
Native Overlay Diff: false
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 4ab9917febca54791c5f071a9d1f404867857fcc
runc version: 54296cf40ad8143b62dbcaa1d90e520a2136ddfe
init version: 949e6fa
Security Options:
seccomp
Profile: default
selinux
Kernel Version: 4.1.12-94.5.7.el7uek.x86_64
Operating System: Oracle Linux Server 7.4
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 13.45 GiB
Name: andydocker
ID: VCVO:SHTE:WPZK:6BTG:SZNF:HI76:AZRP:PW55:DSAY:C2IJ:DEG6:BYIR
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Anyone got an idea what could be wrong?

Thanks
–Andy

I think I figured out how to get rid of the problem. Currently I have /var/lib/docker mounted over iSCSI (10GB NW) and when I disabled the auto start of docker I can successfully run docker run hello-world.

Starting and stopping docker doesn’t reproduce the problem e.g. systemctl stop docker and systemctl start docker and I could successfully execute docker run hello-world.

Enabling docker for autostart reproduces the problem:

[opc@andydocker ~]$ sudo docker run hello-world
docker: Error response from daemon: layer does not exist.
See ‘docker run --help’.
[opc@andydocker ~]$

Any thought on how I can get around this?

Thanks
–Andy