how to systemd mount nfs share
Olivia Zamora
I mounted a nfs share using systemd and it all works but only for the root user. How can I mount using systemd that the mountpoint can be accessed by all users and is also usable by a docker container?
At the moment I can only access the mountpoint as root user, any other user gets a Permission denied. Here is my config:
[Unit]
Description=NZBGet
After=network.target
[Mount]
What=192.168.2.32:/volume1/nzbget
Where=/mnt/synology/nzbget
Type=nfs
Options=soft,async
[Install]
WantedBy=multi-user.target 3 Reset to default