{"id":21939204,"url":"https://github.com/grottopress/docker-wordpress","last_synced_at":"2025-09-01T01:36:44.626Z","repository":{"id":85787939,"uuid":"161791701","full_name":"GrottoPress/docker-wordpress","owner":"GrottoPress","description":"WordPress docker image, batteries included.","archived":false,"fork":false,"pushed_at":"2021-04-26T14:13:05.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-01T17:49:58.066Z","etag":null,"topics":["docker","wordpress","wordpress-docker"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/grottopress/wordpress","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GrottoPress.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-14T13:57:46.000Z","updated_at":"2021-04-26T14:13:08.000Z","dependencies_parsed_at":"2023-03-04T14:00:25.291Z","dependency_job_id":null,"html_url":"https://github.com/GrottoPress/docker-wordpress","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GrottoPress/docker-wordpress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GrottoPress%2Fdocker-wordpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GrottoPress%2Fdocker-wordpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GrottoPress%2Fdocker-wordpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GrottoPress%2Fdocker-wordpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GrottoPress","download_url":"https://codeload.github.com/GrottoPress/docker-wordpress/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GrottoPress%2Fdocker-wordpress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273064572,"owners_count":25039261,"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","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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","wordpress-docker"],"created_at":"2024-11-29T02:17:28.613Z","updated_at":"2025-09-01T01:36:44.610Z","avatar_url":"https://github.com/GrottoPress.png","language":"Dockerfile","readme":"# WordPress Docker Image\n\nWordPress, batteries included. Adds the following PHP extensions:\n\n- imagick\n- imap\n- intl\n- redis\n- soap\n\n## Usage\n\nExample: `docker run -v app:/var/www/html grottopress/wordpress:5.6-php8.0-fpm-alpine`\n\nWordPress requires a MySQL database to save data.\n\nAdditionally, you may need to run this in tandem with a frontend (eg. `nginx`), if you use any of the PHP-FPM variants.\n\nMinimal example using [docker-compose](https://docs.docker.com/compose/):\n\n```yaml\n---\n# docker-compose.yml\nversion: \"3.7\"\nservices:\n  mariadb:\n    image: mariadb:10.5\n    restart: always\n    volumes:\n      - db:/var/lib/mysql\n    environment:\n      MYSQL_ROOT_PASSWORD: db-root-password\n      MYSQL_DATABASE: wordpress-db-name\n      MYSQL_USER: wordpress-db-user\n      MYSQL_PASSWORD: wordpress-db-user-password\n    networks:\n      - back\n  nginx:\n    image: nginx:1.19-alpine\n    depends_on:\n      - wordpress\n    ports:\n      - \"127.0.0.1:8080:80\"\n    restart: always\n    volumes:\n      - app:/var/www/html:ro\n      - ./wordpress.conf:/etc/nginx/conf.d/wordpress.conf:ro\n    networks:\n      - front\n  wordpress:\n    image: grottopress/wordpress:5.6-php8.0-fpm-alpine\n    depends_on:\n      - mariadb\n    environment:\n      WORDPRESS_DB_HOST: mariadb:3306\n      WORDPRESS_DB_NAME: wordpress-db-name\n      WORDPRESS_DB_USER: wordpress-db-user\n      WORDPRESS_DB_PASSWORD: wordpress-db-user-password\n    restart: always\n    volumes:\n      - app:/var/www/html\n    networks:\n      - back\n      - front\nnetworks:\n  back: {}\n  front: {}\nvolumes:\n  app: {}\n  db: {}\n```\n\nYou should have a `wordpress.conf` file in the same directory as the `docker-compose.yml`, with `fastcgi_pass wordpress:9000;` in its PHP location block(s).\n\nRun `docker-compose up -d` to start the services.\n\n## Need a WordPress development environment?\n\nIf using WordPress with docker for development, check out our [WordPress Development Environment](https://github.com/GrottoPress/wordpress-dev). It pulls together useful WordPress development tools, via docker-compose, to form a complete WordPress development solution.\n\n[Check it out \u0026raquo;](https://github.com/GrottoPress/wordpress-dev)\n\n## Alternatives\n\nIf this does not satisfy your specific needs, check out the following images:\n\n- [wordpress](https://hub.docker.com/_/wordpress)\n- [bitnami/wordpress](https://hub.docker.com/r/bitnami/wordpress/)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrottopress%2Fdocker-wordpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrottopress%2Fdocker-wordpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrottopress%2Fdocker-wordpress/lists"}