Shamir Alavi

Results 4 issues of Shamir Alavi

The following Docker commands now work correctly: ``` d = Docker() d = Docker('fedora:latest') d = Docker(image='fedora:latest') d = Docker(image='fedora:latest', mode='P1') ``` In addition, added unit tests for each of...

Related issue and PR: #2300, #2308 The following docker command patterns throw `TypeError` in Ganga. `j.virtualization = Docker("docker://image:tag")` and `j.virtualization = Docker("image:tag")` The documentation for virtualization [Virtualization.rst](https://github.com/ganga-devs/ganga/blob/develop/doc/UserGuide/Virtualization.rst) has been updated...

Core
good first issue

Running unit tests on local machine throws logging error. Tests run successfully. No other side effects. I believe the `Logging error` occurs because of an IO error when `ShutdownManager.py` tries...

Passing arguments such as `Docker("docker://fedora:latest")` throws `TypeError`. **Steps to reproduce** ``` j = Job(name='dockertest') j.virtualization = Docker("docker://fedora:latest") ``` **Error** ``` ERROR !!Unknown/Unexpected ERROR!! ERROR If you're able to reproduce this...