-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature request] plugin to work with Docker containers filesystems #1500
Comments
May be even as NetRocks protocol handler that would simplify implementation |
Please note that container FS is available within the host FS tree if you know the PID of the main process of the container.
Or you can launch far2l within the correct directory with the following one-liner: sudo far2l -cd "/proc/$(docker inspect -f '{{ .State.Pid }}' 11e4ad105ecc)/root" I think it means that you don't need protocol handler, because all FS operations already work. |
Is it read-only access or writing is also enabled? |
Yes, both read and write access is supported. |
try next python plugin :) udocker, some methods are still missing: mkdir, rm, rmdir |
Currently Docker suggests using
docker cp <src-path> <container>:<dest-path>
to copy files to/from container. Not very friendly way if you need to copy large number of files from/to different folders.It would be nice to have far2l plugin allowing to work with docker containers filesystems just like netrock allows to work with remote filesystems.
The text was updated successfully, but these errors were encountered: