Results 13 comments of myoung3

Ok in that case I misunderstood your comment here: https://github.com/hpcng/singularity-userdocs/issues/308#issuecomment-584361813: > The remote command is exclusively for Sylabs cloud services, i.e. the container library library:// URLs, remote builder, key store...

Thanks, that all makes sense. In that case I think it would be helpful to clarify the help files for `singularity remote add` and `singularity remote login`: Currently `remote add`...

> @myoung3 > > > Additional context > > it would also be good if there was a way to remove authenticated logins > > Try `singularity remote logout ....`...

Hi Henrik, I'm not an expert in linux, but my understanding is that the "newgrp" command opens a completely new shell. So the following code will work interactively: newgrp mygroup...

There's slight benefit to putting the system calls in R because it gives easier access to selection of which R module (ie version) to load, whereas creating a script requires...

@eitsupi Not quite. I was successfully able to write to `/etc/environment`. I'm running singularity and don't have root, so this means building a new `.sif` with a definition file that...

wow I just found a much easier solution that doesn't involve writing to `/etc/environment` from within the singularity instance, I just need to run: `s6-env XDG_DATA_HOME= XDG_CONFIG_HOME= rserver --auth-none=0 --auth-pam-helper-path=pam-helper...

Yeah I'm not sure what the right way to modify the rocker source code to make it easier for rocker users to alter environmental variables of rserver, I was mostly...

Sorry! Maybe i can redeem myself by pointing out a use case: When building a docker container through GitHub actions, I would like to be able to pull someone else's...