Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dockette/drupalista
🐳 Dockerized Drupal Stack
https://github.com/dockette/drupalista
docker drupal php
Last synced: 23 days ago
JSON representation
🐳 Dockerized Drupal Stack
- Host: GitHub
- URL: https://github.com/dockette/drupalista
- Owner: dockette
- License: mit
- Created: 2020-10-03T18:51:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-23T12:56:11.000Z (about 4 years ago)
- Last Synced: 2024-11-13T03:22:48.080Z (3 months ago)
- Topics: docker, drupal, php
- Language: Dockerfile
- Homepage: https://f3l1x.io
- Size: 9.77 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Dockette / Drupalista
🐳 Dockerized Drupal Stack
🕹 f3l1x.io | 💻 f3l1x | 🐦 @xf3l1x-----
## Usage
This stack is composed from these images:
- `drupalista/web`
- Based on `thecodingmachine/php:7.4-v3-slim-apache`
- 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
- Workdir `/srv`
- `drupalista/redis`
- Based on `redis:5`
- Update using unix socket```yaml
version: '3.6'services:
web:
image: drupalista/web
restart: unless-stopped
ports:
- 8000:80
environment:
- STARTUP_COMMAND_1=composer install
volumes:
- ./:/srv:cached
- ./.data/redis:/tmp/docker:cachedpostgresql:
image: postgres:12
restart: unless-stopped
ports:
- 5432:5432
environment:
- POSTGRES_PASSWORD=drupal
- POSTGRES_USER=drupal
- POSTGRES_DB=drupal
volumes:
- ./.data/postgres:/var/lib/postgresql/dataadminer:
image: dockette/adminer:dg
restart: unless-stopped
ports:
- 8010:80redis:
image: drupalista/redis
restart: unless-stopped
ports:
- 6379:6379
volumes:
- ./.data/redis:/tmp/docker:cached
```## Development
See [how to contribute](https://contributte.org/contributing.html) to this package.
This package is currently maintaining by these authors.
-----
Consider to [support](https://github.com/sponsors/f3l1x) **f3l1x**. Also thank you for using this package.