If you receive below error when trying to configure a docker application:
Docker failed with the error /usr/bin/docker-current: Error response from daemon: error creating overlay mount to /var/lib/docker/overlay2/7c4d8f03ccf41236909e893b4628bb80860a529f35ada036da379d375de5c7bb-init/merged: invalid argument. See '/usr/bin/docker-current
the fix is to edit /etc/docker/daemon.json file and add below content to it:
{ "storage-driver": "devicemapper" }
Reload the systemctl daemon:
systemctl daemon-reload
And restart docker service:
systemctl restart docker