You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Really cool project. Would love to server Wikipedia from an RPi.
I'm trying to run gozim in a Docker Container on a Raspberry Pi 3 B with Raspbian Strecht Lite.
Here is the Dockerfile
FROM kenntwasde/raspi-golang:latest
ENTRYPOINT []
RUN apt-get update && \
apt-get -qy install wget liblzma-dev libleveldb-dev
WORKDIR /root/
RUN wget https://github.com/akhenakh/gozim/releases/download/v1.0/gozim-1.0-arm-linux.tar.gz
RUN tar -xvf gozim-*.tar.gz -C /usr/local/bin
CMD ["/bin/sh"]
To test it I used
docker build -t wikipedia .
wget http://download.kiwix.org/zim/wikipedia/wikipedia_en_100_2019-01.zim -P /tmp/wikipedia
docker run -ti -v /tmp/wikipedia:/tmp/wikipedia wikipedia
I think I'm running into an issue with leveldb also. Trying to run on a raspi zero (buster) and I'm getting "error while loading shared libraries: libleveldb.so.1: cannot open shared object file: No such file or directory". If you have time to make a new build I'd really appreciate it.
Really cool project. Would love to server Wikipedia from an RPi.
I'm trying to run gozim in a Docker Container on a Raspberry Pi 3 B with Raspbian Strecht Lite.
Here is the Dockerfile
To test it I used
In the container shell, I execute
which outputs
but when I now try to start the web server in the container shell with
I get the error
Anyone can reproduce this and has any idea what causes the error?
Thanks.
The text was updated successfully, but these errors were encountered: