Is there a way to track running singularity container like "docker ps" ? or singularity logs any start/stop info in somewhere.
I have tried the "singularity instance list" command but it doesn't work for the singularity container which doesn't start with "singularity instance start"
Singularity running with singularity exec
[vagrant@localhost ~]$ singularity exec hello-world_latest.sif sleep 600 &
[1] 31167
[vagrant@localhost ~]$ jobs
[1]+ Running singularity exec hello-world_latest.sif sleep 600 &
[vagrant@localhost ~]$ singularity instance list
INSTANCE NAME PID IP IMAGE
Singularity running with singularity instance start
[vagrant@localhost ~]$ singularity instance start lolcow_latest.sif cow1
INFO: instance started successfully
[vagrant@localhost ~]$ singularity instance list
INSTANCE NAME PID IP IMAGE
cow1 31033 /home/vagrant/lolcow_latest.sif
Any thoughts? Thank you in advance!