Make Docker depend on the mount. You can simply use systemctl edit docker.service
and then
[Unit]
Requires=path-to-your-smb.mount
After=path-to-your-smb.mount
Then it will guarantee it's mounted by the time Docker starts.
Make Docker depend on the mount. You can simply use systemctl edit docker.service
and then
[Unit]
Requires=path-to-your-smb.mount
After=path-to-your-smb.mount
Then it will guarantee it's mounted by the time Docker starts.
This is the answer. I’m not sure you need both. I tried the Requires= but that didn’t solve my problem till I did After= Thanks for the heads up!
It does need both. Requires=
alone will only pull the unit as a dependency and will activate it, but doesn't define a hard dependency. You need the After=
to also declare that the unit must be started after its dependencies are finished loading, not merely being activated. Otherwise they will start in parallel, it just guarantees that both units will be activated. There's an even stronger directive, BindsTo=
, that will tie them such that if its dependency is stopped, this unit will be deactivated too. If SMB is a hard dependency that might be preferable. Requires+After still allows the mount to fail, but ensures if it's mountable it'll be mounted before Docker, whereas with BindsTo+After, failing the SMB mount would also shut down Docker.