Return to Image List

drupal

Drupal

Drupal is a free and open-source content-management framework written in PHP and distributed under the GNU General Public License. It is used as a back-end framework for at least 2.1% of all Web sites worldwide ranging from personal blogs to corporate, political, and government sites including WhiteHouse.gov and data.gov.uk. It is also used for knowledge management and business collaboration.

See drupal.org for more information

This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.


License

View license information here

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.


Versions

Use the pull string below for the version of this image you require.
9.0 docker pull icr.io/ibmz/drupal@sha256:e6e7ff2931047e1edf5385908953939e4574c6aa00b2b6435c07c399e9db6065 Vulnerability Report12-14-2020
9.2.12-php8.0-apache-bullseye docker pull icr.io/ibmz/drupal@sha256:5af6991614a68505998c9e671604e2ca635c540cfe846f3097f419966dcbff80 Vulnerability Report01-02-2025
9.3.8-php8.0-apache-bullseye docker pull icr.io/ibmz/drupal@sha256:25a5c50ac63bf5ca9cab3d7c27e61bf1a29b64d71dd1c462f8f3d6d6fa4d25bc Vulnerability Report01-02-2025
Version Pull String Security (IBM Cloud) Created

Usage Notes

The basic pattern for starting a drupal instance is:

docker run --name some-drupal -d icr.io/ibmz/drupal:[version]

If you'd like to be able to access the instance from the host without the container's IP, standard port mappings can be used:

docker run --name some-drupal -p 8080:80 -d icr.io/ibmz/drupal:[version]

Then, access it via localhost:8080 or host-ip:8080 in a browser. There are multiple database types supported by this image (mySQL, Postgres), most easily used via Docker networks. In the default configuration, SQLite can be used to avoid a second container and write to flat-files.