Creation of a Docker base image with Apache + PHP 7.2 + PDO_OCI
If you want to generate the Docker image from the Dockerfile:
$ docker build -t "base-pdo-oci" .
If you prefer, you can load the image from DockerHub and then start the Apache web server:
$ docker run --rm -d -p 9099:80 jap1968/base-pdo-oci /usr/sbin/apache2ctl -D FOREGROUND
Once you have your container up and running, you can open your browser and point to the testing address to verify that everything is working as expected.