indigo-dc / udocker

A basic user tool to execute simple docker containers in batch or interactive systems without root privileges.
https://indigo-dc.github.io/udocker/
Apache License 2.0
1.38k stars 135 forks source link

Error: installation of udockertools failed #362

Closed DilLip-Chowdary-Codes closed 1 year ago

DilLip-Chowdary-Codes commented 2 years ago

Getting below errors/warnings after running udocker install --force

Logs
udocker command line interface version: 1.3.1
requires udockertools tarball release : 1.2.8
Info: udocker command line interface 1.3.1
Info: searching for udockertools 1.2.8
Install Log: False

What could be the reason for this?

udocker version I'm using: 1.3.1

eugeniosss commented 2 years ago

I am running in the exact same problem... If you found a solution please let me know!

mariojmdavid commented 2 years ago

sorry what errors/warnings if need be post udocker --debug install --force

do you end up with anything in ~/.udocker/bin ~/.udocker/lib

RadFromOrange commented 1 year ago

Hi , i am stuck at udockertools download .

udocker command line interface version: 1.3.5 requires udockertools tarball release : 1.2.8 Info: searching for messages: curl url: https://raw.githubusercontent.com/indigo-dc/udocker/master/messages curl arg: {'ofile': '/tmp/udocker-9839-4edbe4dd-eeb3-3abd-8932-b0acb0d4e966-udockertools', 'follow': True}

How can i download udockertools behind corporate proxy , i have tried setting https_proxy with no success. how can i install udockertools manualy ?

Thx,

mariojmdavid commented 1 year ago

hi check the following in the installation manual https://github.com/indigo-dc/udocker/blob/master/docs/installation_manual.md section 2.4

this way you will pre-fetch the udocker-tools and install in some host without outbound

after if you want to pull (or search) images in dockerhub (or other repository)

make a ssh tunnel

ssh -D 9000 -q -C -N -f user@

and

udocker pull --httpproxy=socks5h://localhost:9000

RadFromOrange commented 1 year ago

hi check the following in the installation manual https://github.com/indigo-dc/udocker/blob/master/docs/installation_manual.md section 2.4

this way you will pre-fetch the udocker-tools and install in some host without outbound

after if you want to pull (or search) images in dockerhub (or other repository)

make a ssh tunnel

ssh -D 9000 -q -C -N -f user@

and

udocker pull --httpproxy=socks5h://localhost:9000

Thx ! it worked