Use-case: my FreshRSS service would start before my iSCSI drive was mounted, meaning I had to restart the service for it to pick up the configuration files on my iSCSI. Doing this makes the Docker systemd service depend on the specific mount systemd service - it won’t start until after the iSCSI drive is mounted.

# drive that we're interested in
 
cat /etc/fstab | grep shared
# output
# 
# UUID=<drive UUID> /media/shared ext4 _netdev 0 0
 
systemctl list-units -t mount | grep shared
# output
# 
# media-shared.mount loaded active mounted /media/shared
# edit the docker.service 
 
sudo EDITOR=vim systemctl edit docker
 
# add the following lines
# 
# [Unit]
# Requires=media-shared.mount
# After=media-shared.mount

EOF