File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ sudo : required
2+
3+ services :
4+ - docker
5+
6+ env :
7+ matrix :
8+ - DOCKERFILE="master"
9+
10+ before_script :
11+ - docker version
12+
13+ script :
14+ - docker build -t ${DOCKERFILE} ./${DOCKERFILE}
15+
16+ after_script :
17+ - docker images
18+ - docker ps -a
Original file line number Diff line number Diff line change 11DRUSH for Drupal
22-----------------------
33
4+ [ ![ Build Status] ( https://travis-ci.org/drupal-docker/drush.svg?branch=master )] ( https://travis-ci.org/drupal-docker/drush ) [ ![ ] ( https://badge.imagelayers.io/drupaldocker/drush:latest.svg )] ( https://imagelayers.io/?images=drupaldocker/drush:latest ' drupaldocker/drush ')
45
6+ # Quickstart:
7+
8+ ````
9+ docker run -dP --volume <path/to/drupal>:/var/www/html drupaldocker/drush
10+ ````
11+
12+ # Roadmap
13+ - ~~ Add master~~ (thank you @slashrsm )
14+ - Create folders for major Drush versions, use drupaldocker/php: cli as parent image
15+ - Add documentation
16+
17+ # Status
18+ Proof of concept
19+
20+ # Contribution
21+ Create a pull request and become project maintainer :)
Original file line number Diff line number Diff line change 1+ FROM drupaldocker/php:cli
2+ MAINTAINER drupal-docker
3+
4+ ADD http://files.drush.org/drush.phar /usr/local/bin/drush
5+ RUN php /usr/local/bin/drush core-status -y && chmod a+x /usr/local/bin/drush
6+ RUN drush init -y
7+
8+ CMD ["drush" , "core-cli" ]
You can’t perform that action at this time.
0 commit comments