What
Container with accelerated video decoding and ML.
From the git root, it can be run using:
$ podman run -v ./config:/config:z \
-v ./path/to/nirvana:/over/the/rainbow:z \
-v ./models:/models:z \
-p 8443:8443 \
--security-opt=label=disable \
--device=nvidia.com/gpu=all \
predalert
or simply podman-compose up.
PS: Users of podman need to pass the config dir,
and all other relative-path dirs, with a leading ./
Why
podman-compose makes running containers programmatically
a breeze, and is a great orchestration tool.
It also offers separation between app and host.
# What
Container with accelerated video decoding and ML.
From the git root, it can be run using:
```
$ podman run -v ./config:/config:z \
-v ./path/to/nirvana:/over/the/rainbow:z \
-v ./models:/models:z \
-p 8443:8443 \
--security-opt=label=disable \
--device=nvidia.com/gpu=all \
predalert
```
or simply `podman-compose up`.
PS: Users of podman need to pass the config dir,
and all other relative-path dirs, with a leading ./
# Why
podman-compose makes running containers programmatically
a breeze, and is a great orchestration tool.
It also offers separation between app and host.