Open VlastaAIP opened 2 years ago
I think I got it. This command actually helps: git config --global url."https://".insteadOf git://
Added to Dockerfile with: RUN git config --global url."https://".insteadOf git://
and also scripts/setup-npm.sh git config --global url."https://".insteadOf git://
I think I got it. This command actually helps:
git config --global url."https://".insteadOf git://
Added to Dockerfile with:
RUN git config --global url."https://".insteadOf git://
and also scripts/setup-npm.shgit config --global url."https://".insteadOf git://
I run into the same bug and your fix worked - thanks a lot. :)
where to put these lines please?. I mean inside of file the top or bottom or somewhere else.
Thank you @VlastaAIP for your hint. The problem is that github no longer accept unauthenticated protocol.
@omaradam61 I just added
RUN git config --global url."https://".insteadOf git://
in the dockerfile before the nvm install
Browser & OS (see also https://www.whatismybrowser.com/): Ubuntu 22.04
Describe the bug
Installed Zenodo this way: https://github.com/zenodo/zenodo/blob/master/INSTALL.rst through Docker command: docker-compose -f docker-compose.full.yml build
In step 18/26 I get connection error with these information:
Steps to Reproduce
git clone https://github.com/zenodo/zenodo.git cd ~/src/zenodo git checkout master docker-compose -f docker-compose.full.yml build docker-compose -f docker-compose.full.yml up -d
Expected behavior
I guess it is caused by adress git:// and it should be renamed to https:// (because I had same problem with other issue). But I don´t know where to change it, if it is somewhere inside the docker?
Screenshots (if applicable)
Additional context