{"id":21522628,"url":"https://github.com/takeyamajp/docker-wordpress","last_synced_at":"2026-05-22T14:08:23.701Z","repository":{"id":165087504,"uuid":"161776202","full_name":"takeyamajp/docker-wordpress","owner":"takeyamajp","description":"The best WordPress image","archived":false,"fork":false,"pushed_at":"2022-12-19T13:49:56.000Z","size":205,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-24T04:53:05.144Z","etag":null,"topics":["docker","wordpress"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/takeyamajp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-12-14T11:33:47.000Z","updated_at":"2022-01-08T09:49:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"3c6ce7be-fd13-4a29-ba0a-cb6d540df52e","html_url":"https://github.com/takeyamajp/docker-wordpress","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeyamajp%2Fdocker-wordpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeyamajp%2Fdocker-wordpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeyamajp%2Fdocker-wordpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takeyamajp%2Fdocker-wordpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/takeyamajp","download_url":"https://codeload.github.com/takeyamajp/docker-wordpress/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244075835,"owners_count":20394009,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","wordpress"],"created_at":"2024-11-24T01:11:11.937Z","updated_at":"2026-05-22T14:08:18.681Z","avatar_url":"https://github.com/takeyamajp.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wordpress\nStar this repository if it is useful for you.  \n[![Docker Stars](https://img.shields.io/docker/stars/takeyamajp/wordpress.svg)](https://hub.docker.com/r/takeyamajp/wordpress/)\n[![Docker Pulls](https://img.shields.io/docker/pulls/takeyamajp/wordpress.svg)](https://hub.docker.com/r/takeyamajp/wordpress/)\n[![license](https://img.shields.io/github/license/takeyamajp/docker-wordpress.svg)](https://github.com/takeyamajp/docker-wordpress/blob/master/LICENSE)\n\n## Supported tags and respective Dockerfile links  \n- [`latest`, `rocky9`](https://github.com/takeyamajp/docker-wordpress/blob/master/rocky9/Dockerfile) (Rocky Linux 9) [`alma9`](https://github.com/takeyamajp/docker-wordpress/blob/master/alma9/Dockerfile) (AlmaLinux 9)\n- [`rocky8`](https://github.com/takeyamajp/docker-wordpress/blob/master/rocky8/Dockerfile) (Rocky Linux 8) [`alma8`](https://github.com/takeyamajp/docker-wordpress/blob/master/alma8/Dockerfile) (AlmaLinux 8)\n- [`centos8`](https://github.com/takeyamajp/docker-wordpress/blob/master/centos8/Dockerfile) (We have finished support for CentOS 8.)\n- [`centos7 (Ghostscript is not available on CentOS7)`](https://github.com/takeyamajp/docker-wordpress/blob/master/centos7/Dockerfile)\n\n## Image summary\n    FROM rockylinux:9  \n    MAINTAINER \"Hiroki Takeyama\"\n    \n    ENV TIMEZONE Asia/Tokyo\n    \n    ENV HOSTNAME www.example.com  \n    ENV FORCE_SSL true  \n    ENV GZIP_COMPRESSION true\n    \n    ENV BASIC_AUTH false  \n    ENV BASIC_AUTH_USER user  \n    ENV BASIC_AUTH_PASSWORD password\n    \n    ENV HTTPD_SERVER_ADMIN root@localhost  \n    ENV HTTPD_LOG true  \n    ENV HTTPD_LOG_LEVEL warn  \n    ENV HTTPD_PHP_ERROR_LOG true\n    \n    ENV WORDPRESS_DB_HOST mysql  \n    ENV WORDPRESS_DB_NAME db  \n    ENV WORDPRESS_DB_USER user  \n    ENV WORDPRESS_DB_PASSWORD password  \n    ENV WORDPRESS_TABLE_PREFIX wp_  \n    ENV WORDPRESS_DEBUG false  \n    ENV WORDPRESS_CONFIG_EXTRA param1,param2  \n    ENV WORDPRESS_CONFIG_EXTRA_VALUE \\'string\\',true\n    \n    # WordPress  \n    VOLUME /wordpress  \n    # SSL Certificates  \n    VOLUME /ssl_certs\n    \n    EXPOSE 80  \n    EXPOSE 443\n\n## How to use\nThis container is supposed to be used as a backend of a reverse proxy server.  \nHowever, it can be simply used without the reverse proxy server.\n\nExample `docker-compose.yml`:\n\n    version: '3.1'  \n    services:  \n      wordpress:  \n        image: takeyamajp/wordpress  \n        ports:  \n          - \"8080:80\"  \n        environment:  \n          FORCE_SSL: \"false\"  \n      mysql:  \n        image: takeyamajp/mysql  \n\nRun `docker-compose up -d`, wait for it to initialize completely. (It takes several minutes.)  \nThen, access it via `http://localhost:8080` or `http://host-ip:8080` in your browser.\n\n## Time zone\nYou can use any time zone such as America/Chicago that can be used in Rocky Linux.  \n\nSee below for zones.  \nhttps://www.unicode.org/cldr/charts/latest/verify/zones/en.html\n\n## Force SSL\nIf `FORCE_SSL` is true, the URL will be redirected automatically from HTTP to HTTPS protocol.\n\n## GZIP Compression\nThe `GZIP_COMPRESSION` option will save bandwidth and increase browsing speed.  \nNormally, It is not necessary to be changed.\n\n## Basic Authentication\nSet `BASIC_AUTH` true if you want to use Basic Authentication.  \nWhen `FORCE_SSL` is true, it will be used after the protocol is redirected to HTTPS.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakeyamajp%2Fdocker-wordpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftakeyamajp%2Fdocker-wordpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakeyamajp%2Fdocker-wordpress/lists"}