Ns8-wordpress something new to test

Thank you again. I think I have been able to work out the basics on the dockerfile. I was able to successfully build a wordpress-pdo image using podman. However, I am still unclear on the NS8 module structure, so I’m uncertain how to marry my wordpress image to the module, or two a new module, such that it is working in harmony with what you’ve already constructed.

Here’s my containerfile:

FROM docker.io/wordpress:6.4.3-php8.3-apache
RUN docker-php-ext-install pdo_mysql

And the build command is:

# podman build -t wordpress-pdo -f Container.file .

It seems like I could do what I want using the podman --replace directive as is being done here. However, as I mentioned above, I am not able to see the running wordpress container using podman, so I have no idea how to reference it.