From systemctl status we have:
Process: 9419 ExecStart=/usr/bin/dockerd-current --add-runtime oci=/usr/libexec/docker/docker-runc-current --default-runtime=oci --authorization-plugin=rhel-push-plugin (code=exited, status=1/FAILURE)
This is odd because dockerd has a *LOT* more arguments than that specified in /usr/lib/systemd/system/docker.service
... oh, wait:
ExecStart=/usr/bin/dockerd-current \
--add-runtime oci=/usr/libexec/docker/docker-runc-current \
--default-runtime=oci \
--authorization-plugin=rhel-push-plugin
--containerd /run/containerd.sock \
--exec-opt native.cgroupdriver=systemd \
--userland-proxy-path=/usr/libexec/docker/docker-proxy-current \
Note the authorization-plugin line has no \
From systemctl status we have: Process: 9419 ExecStart=/usr/bin/dockerd-current --add-runtime oci=/usr/libexec/docker/docker-runc-current --default-runtime=oci --authorization-plugin=rhel-push-plugin (code=exited, status=1/FAILURE) This is odd because dockerd has a *LOT* more arguments than that specified in /usr/lib/systemd/system/docker.service ... oh, wait: ExecStart=/usr/bin/dockerd-current \ --add-runtime oci=/usr/libexec/docker/docker-runc-current \ --default-runtime=oci \ --authorization-plugin=rhel-push-plugin --containerd /run/containerd.sock \ --exec-opt native.cgroupdriver=systemd \ --userland-proxy-path=/usr/libexec/docker/docker-proxy-current \ Note the authorization-plugin line has no \