Pull latex image

HI,

I ran the command “indico maint pull-latex-image” as indico user. My root / partition is only 1Gb. I expanded /var/ to about 7 Gb. I see that the root partion filled up when pulling the image. How do I resolve this issue?

(.venv) indico@indico:~/tmp$ indico maint pull-latex-image
Pulling image: registry.gitlab.com/islandoftex/images/texlive:TL2026-2026-03-08-full
Trying to pull registry.gitlab.com/islandoftex/images/texlive:TL2026-2026-03-08-full…
Getting image source signatures
Copying blob 785d93eb5385 [=============>------------------------] 791.6MiB / 2.1GiB
Copying blob e1b1d06f3f5a skipped: already exists
Copying blob 4f4fb700ef54 skipped: already exists
Copying blob b9e63aef78f5 skipped: already exists
Copying blob 75c7b980ff08 skipped: already exists
Copying blob 66b77edbfee7 done
Copying blob 59d3196e0cdd done
Copying blob 76862c2b251b done
Copying blob ba45c5897d89 skipped: already exists
Error: copying system image from manifest list: writing blob: storing blob to file “/var/tmp/storage1428975948/4”: write /var/tmp/storage1428975948/4: no space left on device
/dev/mapper/sys-var         7.7G  974M  6.5G  13% /var
/dev/mapper/sys-sql         3.6G  386M  3.1G  12% /var/lib/postgresql
/dev/mapper/sys-var_log     1.8G  215M  1.5G  13% /var/log

Thank you.

Jacky

Try making /opt/indico/.local/share/containers (delete it first) a symlink to something in /var/ or whatever place you have that has more space.

However, your space will still be extremely tight, the container image takes around 5.6 GB of disk space:

$ podman unshare du -hs .local/share/containers/
5.6G    .local/share/containers/

Hmm…

My /opt should have enough space. 11G is free.

/dev/mapper/sys-opt 21G 9.0G 11G 47% /opt

Guess my bind mount of tmp was the wrong direction. I switched it around. So it is good now.

Thank you.