Hi,
I assume that running "dnf install -y make gcc openssl-devel
libxml2-devel lz4-devel libzstd-devel bzip2-devel" is done after ~90
seconds.
You are asking for that command to be run in a container, once that
command finishes, the container exists. That's how Docker works, and it
would behave exactly the same as the module if you start a detached
container from the Docker CLI.
If you want the container to keep existing, you need to use a command
that does not exit.
Basically what you ask the module to do is equivalent to running
docker run --detach --interactive --tty --workdir /build \
-v /data/build/:/build --name pgBackRestBuilder \
docker.io/rockylinux:8 dnf install -y make gcc openssl-devel \
libxml2-devel lz4-devel libzstd-devel bzip2-devel
on the command line.
Cheers,
Felix