oracle / railcar

RailCar: Rust implementation of the Open Containers Initiative oci-runtime
Other
1.12k stars 101 forks source link

cannot run bundle alpine generate with runc #36

Open josselinchevalay opened 6 years ago

josselinchevalay commented 6 years ago

hello guys,

to test your project i use this process to generate a bundle : https://github.com/opencontainers/runc#creating-an-oci-bundle

docker export $(docker create alpine) | tar -C rootfs -xvf - && runc spec

but i run railcar i have this error

`ERROR - PR_CAPBSET_DROP error -1 ERROR - stack backtrace: 0: 0x556914fff724 - backtrace::backtrace::libunwind::trace::h1d2163fd4d107125 at /root/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.5/src/backtrace/libunwind.rs:53

i comment this part https://github.com/oracle/railcar/blob/29e955e9c7a875c37a7feb43063335fca86d0160/src/capabilities.rs#L32

and rebuild railcar, after that my bundle running.

do you have an idea why ?

Regards