- Podman introduction
- Podman storage: we use the podman storage as a backup to our logs and database.
No need to clone github repo
$ podman login quay.io
$ podman volume create people-count-storage
$ podman pull quay.io/guiseai_retail/people-count:ob_1.0.1
$ podman run --name people-count-container \
-p 5041:5041 \
-v people-count-storage:/app/ \
quay.io/guiseai_retail/people-count:ob_1.0.1
clone the repo
$ git clone https://github.com/GuiseAI/people-count-monolith.git
$ cd people-count-monolith
$ git checkout <branch_name>
- build the image and create storage
$ podman build -t people-count .
$ podman volume create people-count-storage
- run the image
podman run --name people-count-container \
-p 5041:5041 \
-v people-count-storage:/app/ \
-d people-count
clone the repo
$ git clone https://github.com/GuiseAI/people-count-monolith.git
$ cd people-count-monolith
$ git checkout <branch_name>
To start
podman-compose up
To stop
podman-compose down
Once the image is running get the Container ID
podman ps
Copy the Video in the container
podman cp <videofile> <container_id>:/app/
From the Web UI, enter the video file name in the IP Camera input section