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.3.8-php8.0-apache-bullseye docker pull icr.io/ibmz/drupal@sha256:bd906c2de2b5f1f9db87eb29ff3a3eeee23944e7d9ae4485fa62827c61d7764f Vulnerability Report04-30-2024
9.2.12-php8.0-apache-bullseye docker pull icr.io/ibmz/drupal@sha256:5421f95c3c0abe9f1f2975dec63fb5baa4acf3d990604096686eccf4ac2d7556 Vulnerability Report04-30-2024
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.