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
Currently we store the bundle path for the container as-is given to the -b of the create command. The direct effect of this can be seen when using the list command :
ID PID STATUS BUNDLE CREATED CREATOR
tutorial_container 15591 Created ./tutorial 2022-08-29T11:10:11+05:30 root
The path should be canonicalized before storing, so we can get the proper path whenever we need it.
The problems with this can be that if any part of youki assumes that the bundle path is non-canonicalized, , and uses something else to do that, then it can fail.
This might also effect changes of #152 , namely made in pr #153 , so those must be tested.
The direct observable difference this will make can be seen with list command - when created new container with this change, the output will be similar to
ID PID STATUS BUNDLE CREATED CREATOR
tutorial_container 19157 Created /complete/path/to/the/bundle/tutorial 2022-08-29T11:21:08+05:30 root
This is a suggestion, discussion is much welcome!
The text was updated successfully, but these errors were encountered:
Currently we store the bundle path for the container as-is given to the
-b
of the create command. The direct effect of this can be seen when using the list command :The path should be canonicalized before storing, so we can get the proper path whenever we need it.
The problems with this can be that if any part of youki assumes that the bundle path is non-canonicalized, , and uses something else to do that, then it can fail.
This might also effect changes of #152 , namely made in pr #153 , so those must be tested.
The direct observable difference this will make can be seen with list command - when created new container with this change, the output will be similar to
This is a suggestion, discussion is much welcome!
The text was updated successfully, but these errors were encountered: