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.2.12-php8.0-apache-bullseye |
docker pull icr.io/ibmz/drupal@sha256:e89e13dcfe2eb7bb0fe843f0ca162af9c355c54c9a90952059a6e140e74c8ffe |
Vulnerability Report | 10-29-2024 | 9.0 |
docker pull icr.io/ibmz/drupal@sha256:e6e7ff2931047e1edf5385908953939e4574c6aa00b2b6435c07c399e9db6065 |
Vulnerability Report | 12-14-2020 | 9.3.8-php8.0-apache-bullseye |
docker pull icr.io/ibmz/drupal@sha256:739324b6fc36c67769fdbf3590a39011c9950989115900c0dbae80663455a567 |
Vulnerability Report | 10-29-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.