Your comments
Hi, you should be using the default port of 2202. Port 5000 is reserved for Synology Disk Station Manager.
If you need help with set up, let me know.
Customer support service by UserEcho
Hi, you should be using the default port of 2202. Port 5000 is reserved for Synology Disk Station Manager.
If you need help with set up, let me know.
Customer support service by UserEcho
You need to create the mount points in Unraid in your /etc/fstab configuration file.
Here's my example in Ubuntu using NFS file shares in /etc/fstab:
# Comics
Synology_IP:/volume1/Comics /nfs/Comics nfs auto,nofail,noatime,nolock,intr,tcp,actimeo=1800 0 0
I then created the mount point on Ubuntu using:
sudo mkdir -p /nfs/Comics
Then mount using sudo mount -a
You shouldn't get any errors. If you do, then check the syntax above.
In your docker configuration, you need to map the volume with /comics mapped to /nfs/Comics.
If you use Docker CE:
container: /comics
host: /nfs/Comics
If you are using docker client:
-v /nfs/Comics:/comics
The /comics path is what you will define in your Ubooquity configuration.
Let me know if you need further help. :)
%