Hopswork Docker_registry Error

Hello
im new to the hopswork, ive been trying to install it with same requirement in the documentation, but got error in the docker registry, here is the error logs

Generated at 2022-08-25 15:57:55 +0700
Mixlib::ShellOut::ShellCommandFailed: bash[import_images] (hops::docker_registry line 126) had an error: Mixlib::ShellOut::ShellCommandFailed: Expected process to exit with [0], but received '1'
---- Begin output of "bash"  "/tmp/chef-script20220825-5015-9vuizq" ----
STDOUT: Loaded image: docker/dockerfile:experimental
Loaded image: base:3.0.0
STDERR: ApplyLayer exit status 1 stdout:  stderr: write /srv/hops/anaconda/envs/theenv/lib/python3.8/site-packages/torch/lib/libtorch_cpu.so: no space left on device
---- End output of "bash"  "/tmp/chef-script20220825-5015-9vuizq" ----
Ran "bash"  "/tmp/chef-script20220825-5015-9vuizq" returned 1

from the logs its say no space left, but ive seen on my terminal its still available 1.8 Tera, and im already using ext4 filesystem, im also tried to download base.tar file manualy but got the same error, anyone can help?

[hopswork@hostname chef-solo]$ df -kh /data/hopswork
Filesystem      Size  Used Avail Use% Mounted on
/dev/sdb2       2.0T  215G  1.8T  11% /data

Hello @zold! Can you verify that the path /srv/hops ends up on your /data partition?

Can you verify by showing me the output of ls -l /srv?

It should look something like:

root@dev:/srv# ls -l /srv
total 0
lrwxrwxrwx 1 root root 9 aug 26 09:31 hops -> /data/hops

If it’s not the case, I recommend you create the following symlinks to your /data disk:

mkdir /data/hops
ln -s /data/hops /srv

mkdir /data/hopsworks-data
ln -s /data/hopsworks-data /srv

mkdir /data/chef-solo
ln -s /data/chef-solo /tmp/chef-solo

Best regards,
Robin

Hi @Robin_Andersson thanks for your reply, here it is

[hopswork@hostname cookbooks]$ ls -l /srv
total 4
drwxr-xr-x  2 root root   24 Aug 24 15:48 dnsmasq
lrwxrwxrwx  1 root root    9 Aug 24 09:56 hops -> /mnt/hops
drwxrwxr-x 22 root root 4096 Aug 25 09:55 hopsworks-data
[hopswork@hostname cookbooks]$

Best regards,
zold