foxsen / zotero-selfhost

Zotero platform organized for selfhosting
107 stars 10 forks source link

Missing docker image #4

Open KevinKlipsch opened 1 month ago

KevinKlipsch commented 1 month ago

Hi, the docker-compose,yml refers to an image called "app-zotero". But it cant be pulled from docker hub. Seems it is no longer there?! How can this be sorted out?

Kevin (a noob, but got as far as running docker compose, which works fine so far, except for the one apparently unavailable image)

iamfoolberg commented 1 month ago

Well, the image called "app-zotero" will be built by the docker-compose according to the "Dockerfile".

Just run the "docker-compose up -d", the docker will handle it.

In case you can not git clone some git://... sub moudles, run the following plz: git config --global url."https://".insteadOf git:// and update the directory:

cd zotero-selfhost
git submodule update --init --recursive

by the way, set the npm proxy in Dockerfile line 89:

RUN cd /var/www/stream-server && npm config set registry http://registry.npm.taobao.org/ && npm i