HEPCloud / decisionengine

HEPCloud Decision Engine framework
Apache License 2.0
6 stars 26 forks source link

Added EL9 instructions #676

Closed mambelli closed 1 year ago

vitodb commented 1 year ago

podman is leaking volumes each time it starts a container, in the long run this is exhausting system resources. To check current volumes used by podman user can run podman volume list. To clean up volumes user can run podman volume prune -f after all podman container have been stop and removed.

In instructions the procedure we have to stop/rm podman container is

podman stop decisionengine-redis | xargs podman rm

maybe we can replace that with

podman stop decisionengine-redis
podman rm decisionengine-redis

that could be more user friendly.