Skip to content
This repository has been archived by the owner on Jul 1, 2023. It is now read-only.

guss77/docker-wordpress-multisite

 
 

Repository files navigation

This repository is unmaintained, depricated and archived.

If you want to customize a Wordpress container, for example - to add PHP modules needed by plugins and themes - just create a new Dockerfile such as this:

FROM wordpress:php8.2-apache
RUN apt-get update; apt-get install -y --no-install-recommends libxml2-dev libonig-dev
RUN docker-php-ext-install soap mbstring pdo pdo_mysql

(a lot of PHP extensions also require development library dependencies that are missing from the official container)

And you can use it in a compose file like so:

  wordpress:
    build:
      context: path/to/new/Dockerfile

(it is recommended to put the Wordpress extension Dockerfile in its own sub-directory so that you can add files locally without making too much of a mess).

Maintained by: Oded Arbel

This is a fork of the Git repo of the Docker "Official Image" for wordpress. See the Docker Hub page for the full readme on how to use this Docker image and for information regarding contributing and issues.

This fork was created to enable Wordpress Multi-site functionality out of the box without needing any additional site-specific configuration.

The full image description on Docker Hub is generated/maintained over in the docker-library/docs repository, specifically in the wordpress directory.

See a change merged here that doesn't show up on Docker Hub yet?

For more information about the full official images change lifecycle, see the "An image's source changed in Git, now what?" FAQ entry.

For outstanding wordpress image PRs, check PRs with the "library/wordpress" label on the official-images repository. For the current "source of truth" for wordpress, see the library/wordpress file in the official-images repository.


  • build status badge
  • build status badge
Build Status Badges (per-arch)
amd64 build status badge arm32v5 build status badge arm32v6 build status badge arm32v7 build status badge
arm64v8 build status badge i386 build status badge mips64le build status badge ppc64le build status badge
s390x build status badge put-shared build status badge

About

Docker Official Image packaging for WordPress

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 70.2%
  • Dockerfile 29.8%