January 14, 20251 yr I'm trying to get this docker work : zweizs/docker-tellico-web - Docker Image | Docker Hub. But when it is turned on it seems to have two problems. One it can't create the directory in it's data drive. I'm assuming some permissions issue, but if you create the directory it seems to progress a little. the error that I suspect is the problem is : MESA: error: ZINK: failed to load libvulkan.so.1. is this just not going to work with unraid or is their something that I'm missing?
January 14, 20251 yr ... all ther info is on teh docker hub page: https://hub.docker.com/r/zweizs/docker-tellico-web and github: https://github.com/Zweihander-Main/docker/tree/master/tellico-web as per that docker info: Quote This allows you to access Tellico through a browser window. If you're looking for a lean Tellico image accessible through your local X server or a multi-user setup, this isn't for you. the unraid docker application would need a xorg session and other resources no this willnot run in unraid the way you think it does... MESA: error: ZINK: failed to load libvulkan.so.1. is looking for a gcard for gui operations... the docker instance in unraids needs other info and data... I don't know enouth about tellico-web to point you in a good direction... https://tellico-project.org/
January 14, 20251 yr make and run your own docker... cd /mnt/user/appdata mkdir tellico touch dockerfile nano dockerfile insert: # Install necessary packages and dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ wget \ gnupg2 \ locales \ && locale-gen en_US.UTF-8 \ && rm -rf /var/lib/apt/lists/* # Add the Tellico repository and key RUN echo "deb http://download.kde.org/stable/tellico/ ${TELLICO_VERSION}/" >> /etc/apt/sources.list \ && wget -qO - https://tellico-project.org/download/kde.asc | apt-key add - \ && apt-get update && apt-get install -y --no-install-recommends \ tellico \ && rm -rf /var/lib/apt/lists/* # Add a startup script RUN mkdir -p /defaults COPY start-tellico.sh /defaults/start-tellico.sh RUN chmod +x /defaults/start-tellico.sh # Expose Tellico GUI ENV DISPLAY_WIDTH=1280 ENV DISPLAY_HEIGHT=720 ENV DISPLAY_DEPTH=24 # Expose ports required by the base image EXPOSE 5800 5900 # Define default command CMD ["/defaults/start-tellico.sh"] build the docker: docker build -t tellico-unraid . Make a unraid tempalte or run terminal to test: docker run -d --name tellico-container -p 5800:5800 -p 5900:5900 tellico-unraid Latter you will need ot edit the run file to add a data location for the docker to access files.. but now you will have a unradi webui to access you unraid ip:5900 and should see the telico interface... As You can now access Tellico's GUI via VNC on the exposed ports. This was a quick put together... you may need other edits chagnes and configurations to use that on unraid.
March 3, 20251 yr looks like i forgot to include the base image that has the vnc x windows. Untested but should point peps in the right direction: updated docker file. FROM jlesage/baseimage-gui:debian-12-v4.6.4 # Install necessary packages and dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ wget \ gnupg2 \ locales \ && locale-gen en_US.UTF-8 \ && rm -rf /var/lib/apt/lists/* # Set environment variables for GUI resolution ENV DISPLAY_WIDTH=1280 \ DISPLAY_HEIGHT=720 \ DISPLAY_DEPTH=24 # Add the Tellico repository and key RUN echo "deb http://download.kde.org/stable/tellico/ latest/" >> /etc/apt/sources.list \ && wget -qO - https://tellico-project.org/download/kde.asc | apt-key add - \ && apt-get update && apt-get install -y --no-install-recommends \ tellico \ && rm -rf /var/lib/apt/lists/* # Create a startup script directory and copy the script RUN mkdir -p /defaults COPY start-tellico.sh /defaults/start-tellico.sh RUN chmod +x /defaults/start-tellico.sh # Expose VNC and web ports EXPOSE 5800 5900 # Set the default command CMD ["/defaults/start-tellico.sh"]
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.