https://github.com/forumone/docker-drupal8-cli
CLI-based images for interacting with Drupal 8 sites
https://github.com/forumone/docker-drupal8-cli
cli docker docker-image drupal drush php
Last synced: 2 months ago
JSON representation
CLI-based images for interacting with Drupal 8 sites
- Host: GitHub
- URL: https://github.com/forumone/docker-drupal8-cli
- Owner: forumone
- License: mit
- Created: 2019-11-11T18:45:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T02:45:02.000Z (over 2 years ago)
- Last Synced: 2025-06-21T04:37:25.807Z (about 1 year ago)
- Topics: cli, docker, docker-image, drupal, drush, php
- Language: Shell
- Homepage: https://hub.docker.com/r/forumone/drupal8-cli
- Size: 17.6 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# About this Image
Images built from this repository are used as bases for working with Drupal 8 sites via the command line. They are roughly equivalent to images such as `drush/drush`, and intended to be used as companion images to `forumone/drupal8`.
1. Neither Drush nor Drupal Console are included. It is expected that users will either install or bind-mount the necessary scripts to use.
- Instead of including Drush, the directory `/var/www/html/vendor/bin` has been added to \$PATH to allow easier access to installed dependencies.
2. These images include a small utility, `f1-ext-install`, to simplify the task of installing common extensions. For example, to install Memcached, one only needs to add this to their Dockerfile:
```sh
# Install the core SOAP extension
f1-ext-install builtin:soap
# Install memcached from PECL
f1-ext-install pecl:memcached
```
## PHP Versions and Tags
- Currently supported by PHP:
- `8.0`
- `7.4`
- End-of-life for legacy projects:
- `7.3`
- `7.2`
The tags `7` and `8` are available for quick testing when a specific version isn't needed.
# License
Like the [base PHP image](https://github.com/docker-library/php) we use, this project is available under the terms of the MIT license. See [LICENSE](LICENSE) for more details.