Shado
Shado
DHDistant Horizons
Created by Shado on 3/15/2025 in #help-me
No native lib for SQLite found for OS : Linux - Pterodactyl / Docker
Seems to be that, on Pterodactyl the User the container is run as does not seem to have access to /tmp/ Creating a tmp inside the mc server and pointing it with JAVA_ARGS="-Xmx8G -Xms4G -Dorg.sqlite.tmpdir=/home/container/tmp" /home/container/tmp Fix the issue
10 replies
DHDistant Horizons
Created by Shado on 3/15/2025 in #help-me
No native lib for SQLite found for OS : Linux - Pterodactyl / Docker
Might be related, will try the fix and get back to you
10 replies
DHDistant Horizons
Created by Shado on 3/15/2025 in #help-me
No native lib for SQLite found for OS : Linux - Pterodactyl / Docker
It might be more related to java than Distan Horizon but if anyone as an idea i'm welcome to it !
10 replies
DHDistant Horizons
Created by Shado on 3/15/2025 in #help-me
No native lib for SQLite found for OS : Linux - Pterodactyl / Docker
FROM --platform=$TARGETOS/$TARGETARCH eclipse-temurin:21-jdk

RUN apt-get update -y \
&& apt-get install -y lsof curl ca-certificates openssl git tar sqlite3 fontconfig libfreetype6 tzdata iproute2 libstdc++6 libsqlite3-dev \
&& useradd -d /home/container -m container

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ./entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]
FROM --platform=$TARGETOS/$TARGETARCH eclipse-temurin:21-jdk

RUN apt-get update -y \
&& apt-get install -y lsof curl ca-certificates openssl git tar sqlite3 fontconfig libfreetype6 tzdata iproute2 libstdc++6 libsqlite3-dev \
&& useradd -d /home/container -m container

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ./entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]
My Image with the libs
10 replies
DHDistant Horizons
Created by Shado on 3/15/2025 in #help-me
No native lib for SQLite found for OS : Linux - Pterodactyl / Docker
10 replies