Wordpress installation with self-signed certificate
6.6K
Based on official wordpress image on with os package included curl, git, libxml, imagemagick, systemd-cron
Included php packages are: intl and soap
The apache tag include the apache webserver and php 8.1
The php-fpm tag is a php-fpm instance which still require a webserver to work. The php version is 8.1
$ docker run --name some-wordpress -d bezuidenhout/wordpress:apache
The following environment variables are also honored for configuring your WordPress instance
-e HTTPS_ENABLED=[true|false] (defaults to false)-e APACHE_HOSTNAME=...(hostname to use for the SSL certificate and apache hostname-e APACHE_RUN_UID=...( sets the service and files within the container to set UID. Useful for linux servers where the UID inside the container is not mapped to the running user on the host)-e APACHE_RUN_GID=...( sets the service and files within the container to set GID. Useful for linux servers where the GID inside the container is not mapped to the running group on the host)-e FIX_PERMISSIONS=[true|false] defaults to false) Changes the file ownership for the wordpress installation. Only valid if APACHE_RUN_UID has been set. Only useful if the wordpress volume is mapped to the host.- WORDPRESS_DB_USER=... Sets the db username in the wp-config.php file- WORDPRESS_DB_PASSWORD=... Sets the db password in the wp-config.php file- WORDPRESS_DB_NAME=... Sets the db name in the wp-config.php file- WORDPRESS_DB_HOST=... Sets the db hostname in the wp-config.php fileContent type
Image
Digest
sha256:55a1ce66c…
Size
329.1 MB
Last updated
about 1 year ago
docker pull bezuidenhout/wordpress:apache-php8.2