Hello,
I have a privileged LXC-103 that acts as fileserver.
The files are stored on a ZFS subvol and provided to the users (family) by NFS.
In the unprivileged LXC-125 runs Paperless (without Docker) whose data is currently stored in /opt/paperless/media and /opt/paperless/data
Now I want to move the two paperless directories to the fileserver to have everything in one place.
The directories then should be accessible per NFS by the users and of course by paperless in LXC-125.
What is the best way to achieve that?
I have a privileged LXC-103 that acts as fileserver.
The files are stored on a ZFS subvol and provided to the users (family) by NFS.
Code:
root@pve2:~# cat /etc/pve/lxc/103.conf
...
features: mount=nfs;cifs,nesting=1
hostname: srv
mp0: r1samsung2tb:subvol-103-disk-0,mp=/mnt/srv_data0,backup=1,size=600G
rootfs: r1samsung480gb:subvol-103-disk-0,size=8G
In the unprivileged LXC-125 runs Paperless (without Docker) whose data is currently stored in /opt/paperless/media and /opt/paperless/data
Code:
root@pve2:~# cat /etc/pve/lxc/125.conf
...
features: nesting=1
hostname: paperless
rootfs: r1samsung480gb:subvol-125-disk-0,size=4G
unprivileged: 1
Now I want to move the two paperless directories to the fileserver to have everything in one place.
The directories then should be accessible per NFS by the users and of course by paperless in LXC-125.
What is the best way to achieve that?