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
Just realized that dockering the tool incurs several issues.
passing configuration: user must type configuration params (host, useraccout and password) everytime he runs gocommands. As configuration at host is not accessible in docker container.
volume mount for configuration sharing: sharing ~/.irods dir with docker container will allow gocommands running in the container to access the configuration file. But password file cannot be decrypted as it requires the same uid as host while docker container manages uids independently. This means he should type password every time. To type password, need to also pass -t -i flags. Docker command will get longer like -v ~/.irods:/root/.irods -it ...
source and dest params passed to gocommands are files/dirs in the docker container, not local. This will confuse a lot of users.
Given the pervasiveness of containers, it would be nice to have a docker image that would have gocommands installed.
A couple suggestions
The text was updated successfully, but these errors were encountered: