Best Practices for Utilizing Cameras in Dockerized Applications on Jetson Platforms

I am working on a camera application within a Docker container on Jetson AGX 32.7.2.

Before transitioning to a Docker, we had a systemd service that restarted nvargus-daemon.service before each run. This way we were able to reduce the “Failed to Capture Session” errors.

Switching to docker we no longer have our custom service running on the host and thus, are not able to restart it.

Is there a common way to trigger a restart of nvargus-daemon.service from within the docker?

Hi,
It seems not possible to restart a system service within docker. Maybe you can try single process mode. Please refer to

/usr/src/jetson_multimedia_api/argus/README.TXT

        - The DISABLE_MULTIPROCESS option may be provided to use the single-process
         Argus implementation (ie. does not require nvargus-daemon service):
           'cmake -DDISABLE_MULTIPROCESS=ON ..'

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.