Server Version#: 4.47.3
I’m working on a fresh install of Ubuntu Server 20.04.1. Both the server (192.168.1.100) and the Synology (192.168.1.10) are on static IPs through the router. I’ve followed the guides here and this post here.
my /etc/hosts:
127.0.0.1 localhost
127.0.1.1 nuc10i5
192.168.1.10 syno
my /etc/fstab:
# /boot/efi was on /dev/nvme0n1p1 during curtin installation
/dev/disk/by-uuid/CF27-E700 /boot/efi vfat defaults 0 0
/swap.img none swap sw 0 0
syno:/volume1/PMS/movies /nas/movies nfs sec=sys,intr,rw,vers=4,timeo=11,rsize=131072,wsize=131072,auto,async,bg 0 0
syno:/volume1/PMS/shows /nas/shows nfs sec=sys,intr,rw,vers=4,timeo=11,rsize=131072,wsize=131072,auto,async,bg 0 0
syno:/volume1/PMS/music /nas/music nfs sec=sys,intr,rw,vers=4,timeo=11,rsize=131072,wsize=131072,auto,async,bg 0 0
and my /opt/docker-compose.yml:
version: '3'
services:
plex:
image: ghcr.io/linuxserver/plex
restart: unless-stopped
container_name: plex
network_mode: host
environment:
- PUID=1000
- PGID=1000
- VERSION=docker
- UMASK_SET=022 #optional
- TZ=Asia/Taipei
- PLEX_CLAIM=claim--suuN2Na_zYse3zAxvvK
volumes:
- /nas/plex:/config
- /nas/nfs_movies:/movies
- /nas/nfs_shows:/shows
- /nas/nfs_music:/music
devices:
- /dev/dri:/dev/dri
This is the NFS permissions on the Synology:
I can browse to /nas/shows in SSH to the server and see everything, but PMS can’t read the folders.
Any help? Thanks!