-
I am struggling to get docker working on images build using the tegra-demo-distro. Is there anything more I need to do to run docker images? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Which branch are you using? I've seen this on master in the last couple of days, and haven't had a chance to track down the problem yet. |
Beta Was this translation helpful? Give feedback.
-
I am on master and yes, I am using the NVIDIA NGC Containers. |
Beta Was this translation helpful? Give feedback.
-
I root-caused this and implemented a workaround to deal with the limitations (and, I think bug) in |
Beta Was this translation helpful? Give feedback.
-
Sorry, it took a while to rebuild and test. Indeed it works with the dunfell branch and I will stick to that one for now. The reason to use docker for me was because we need to get a python DeepStream app to work on the OE image. The pyds bindings are for python 3.6 only which is not available for OE. So I tried to use the docker container for DeepStream but this also seems not to be a good solution since I did not find an easy way to build a new container based on the NVIDIA container with all the required dependencies and then integrate that into the image. Has anybody solved this issue already? I also tried to build Python3.6 and install it in addition to the version that OE uses. This works for the pyds bindings but now I am struggling to get the pygobject bindings to be built for this python3.6 version and without it, using deepstream is also not possible :( |
Beta Was this translation helpful? Give feedback.
I root-caused this and implemented a workaround to deal with the limitations (and, I think bug) in
libtirpc
. See #760 for more info.