managah / docker-wordpress

WordPress Docker image with easy-to-customize PHP and sSMTP configs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

managah/wordpress

Docker Build

WordPress Docker image with easy-to-customize PHP and sSMTP configs.

docker pull managah/wordpress:[tag]

Supported tags:

  • php7.3-apache
  • php7.4-apache
  • php8.0-apache
  • php8.1-apache

latest won't work so you always have to specify a tag.

Problems this image attempts to solve

You want to deploy a number of WP containers with slightly different PHP configs but you don't want to create a new ini file or a new Dockerfile for each of them. You want to change it by specifying some environment variables.

With this image, you can:

  • change basic but important PHP configs like post limit, upload limit, session storage...
  • configure sSMTP to send emails from a Docker container. When combined with something like Gmail SMTP, it ensures maximum email deliverability.

Supported environment variables

  • UID and GID
    • NEW_WWW_DATA_UID
    • NEW_WWW_DATA_GID
  • WordPress (see all available vars)
    • WORDPRESS_DB_HOST
    • WORDPRESS_DB_USER
    • WORDPRESS_DB_PASSWORD
    • WORDPRESS_DB_NAME
  • PHP
    • NUPHP_UPLOAD_MAX_FILESIZE (default: 2M)
    • NUPHP_POST_MAX_FILESIZE (default: 8M)
    • NUPHP_MEMORY_LIMIT (default: 128M)
    • NUPHP_EXPOSE_VERSION (default: Off)
    • NUPHP_SESSION_COOKIE_HTTPONLY (default: On)
    • NUPHP_SESSION_COOKIE_SECURE (default: Off)
    • NUPHP_SESSION_NAME (default: PHPSESSID)
    • NUPHP_SESSION_SAVE_HANDLER (default: files)
    • NUPHP_SESSION_SAVE_PATH (default: empty)
  • MSMTP
    • MSMTP_HOST (default: smtp.gmail.com)
    • MSMTP_PORT (default: 587)
    • MSMTP_USER (e.g. youruser@gmail.com)
    • MSMTP_PASSWORD (e.g. your gmail password or app password if you've enabled 2FA authentication)

see common-config.sh for more available variables.

  • Apache Prefork
    • PREFORK_START_SERVERS (default: 3)
    • PREFORK_MIN_SPARE_SERVERS (default: 3)
    • PREFORK_MAX_SPARE_SERVERS (default: 10)
    • PREFORK_MAX_REQUEST_WORKERS (default: 150)
    • PREFORK_MAX_CONNECTIONS_PER_CHILD (default: 0)

About

WordPress Docker image with easy-to-customize PHP and sSMTP configs.

License:The Unlicense


Languages

Language:Shell 84.4%Language:Dockerfile 15.6%