{"id":19976045,"url":"https://github.com/dockette/drupalista","last_synced_at":"2026-05-07T17:39:00.570Z","repository":{"id":70424500,"uuid":"300953964","full_name":"dockette/drupalista","owner":"dockette","description":"🐳  Dockerized Drupal Stack","archived":false,"fork":false,"pushed_at":"2020-12-23T12:56:11.000Z","size":10,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-25T05:02:12.921Z","etag":null,"topics":["docker","drupal","php"],"latest_commit_sha":null,"homepage":"https://f3l1x.io","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/dockette.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}},"created_at":"2020-10-03T18:51:02.000Z","updated_at":"2022-07-06T12:20:53.000Z","dependencies_parsed_at":"2023-04-26T14:19:14.516Z","dependency_job_id":null,"html_url":"https://github.com/dockette/drupalista","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dockette/drupalista","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dockette%2Fdrupalista","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dockette%2Fdrupalista/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dockette%2Fdrupalista/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dockette%2Fdrupalista/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dockette","download_url":"https://codeload.github.com/dockette/drupalista/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dockette%2Fdrupalista/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32749355,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","drupal","php"],"created_at":"2024-11-13T03:21:39.982Z","updated_at":"2026-05-07T17:39:00.553Z","avatar_url":"https://github.com/dockette.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/f3l1x"],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=center\u003eDockette / Drupalista\u003c/h1\u003e\n\n\u003cp align=center\u003e\n   🐳 Dockerized Drupal Stack\n\u003c/p\u003e\n\n\u003cp align=center\u003e\n🕹 \u003ca href=\"https://f3l1x.io\"\u003ef3l1x.io\u003c/a\u003e | 💻 \u003ca href=\"https://github.com/f3l1x\"\u003ef3l1x\u003c/a\u003e | 🐦 \u003ca href=\"https://twitter.com/xf3l1x\"\u003e@xf3l1x\u003c/a\u003e\n\u003c/p\u003e\n\n-----\n\n## Usage\n\nThis stack is composed from these images:\n\n- `drupalista/web`\n  - Based on `thecodingmachine/php:7.4-v3-slim-apache`\n  - PHP: amqp, apcu, ast, bcmath, blackfire, bz2, calendar, Core, ctype, curl, date, dba, dom, ds, enchant, ev, event, exif, fileinfo, filter, ftp, gd, gettext, gmp, gnupg, hash, iconv, igbinary, imagick, imap, intl, json, ldap, libxml, mailparse, mbstring, memcached, mongodb, msgpack, mysqli, mysqlnd, openssl, pcntl, pcov, pcre, PDO, pdo_dblib, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, Phar, posix, pspell, rdkafka, readline, redis, Reflection, session, shmop, SimpleXML, soap, sockets, sodium, SPL, sqlite3, standard, swoole, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, uploadprogress, uuid, xdebug, xml, xmlreader, xmlrpc, xmlwriter, xsl, yaml, Zend OPcache, zip, zlib, Xdebug, Zend OPcache, blackfire\n  - Workdir `/srv`\n- `drupalista/redis`\n  - Based on `redis:5`\n  - Update using unix socket\n\n```yaml\nversion: '3.6'\n\nservices:\n  web:\n    image: drupalista/web\n    restart: unless-stopped\n    ports:\n      - 8000:80\n    environment:\n      - STARTUP_COMMAND_1=composer install\n    volumes:\n      - ./:/srv:cached\n      - ./.data/redis:/tmp/docker:cached\n\n  postgresql:\n    image: postgres:12\n    restart: unless-stopped\n    ports:\n      - 5432:5432\n    environment:\n      - POSTGRES_PASSWORD=drupal\n      - POSTGRES_USER=drupal\n      - POSTGRES_DB=drupal\n    volumes:\n      - ./.data/postgres:/var/lib/postgresql/data\n\n  adminer:\n    image: dockette/adminer:dg\n    restart: unless-stopped\n    ports:\n      - 8010:80\n\n  redis:\n    image: drupalista/redis\n    restart: unless-stopped\n    ports:\n      - 6379:6379\n    volumes:\n      - ./.data/redis:/tmp/docker:cached\n```\n\n## Development\n\nSee [how to contribute](https://contributte.org/contributing.html) to this package.\n\nThis package is currently maintaining by these authors.\n\n\u003ca href=\"https://github.com/f3l1x\"\u003e\n    \u003cimg width=\"80\" height=\"80\" src=\"https://avatars2.githubusercontent.com/u/538058?v=3\u0026s=80\"\u003e\n\u003c/a\u003e\n\n-----\n\nConsider to [support](https://github.com/sponsors/f3l1x) **f3l1x**. Also thank you for using this package.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdockette%2Fdrupalista","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdockette%2Fdrupalista","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdockette%2Fdrupalista/lists"}