Skip to content
This repository was archived by the owner on Jan 6, 2018. It is now read-only.

Commit 214f3c9

Browse files
committed
1 parent 40819d9 commit 214f3c9

7 files changed

Lines changed: 180 additions & 65 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
.idea
22
node_modules
3+
.vagrant
4+
package.box

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
var current_version = '1.2.5';
2-
var new_version = '1.2.6';
1+
var current_version = '1.2.6';
2+
var new_version = '1.3.0';
33

44
module.exports = function(grunt) {
55
grunt.loadNpmTasks('grunt-replace');

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,23 @@ Generates general purpose [docker-compose.yml](https://docs.docker.com/compose/y
1818
TMP="$(mktemp -d)" \
1919
&& git clone https://github.com/dockerizedrupal/drupal-compose.git "${TMP}" \
2020
&& cd "${TMP}" \
21-
&& git checkout 1.2.6 \
21+
&& git checkout 1.3.0 \
2222
&& sudo cp "${TMP}/drupal-compose.sh" /usr/local/bin/drupal-compose \
2323
&& sudo chmod +x /usr/local/bin/drupal-compose \
2424
&& cd -
2525

26+
## Switching to a different PHP version
27+
28+
drupal-compose service php set version <VERSION>
29+
30+
### Supported versions
31+
32+
5.2
33+
5.3
34+
5.4
35+
5.5
36+
5.6
37+
2638
## License
2739

2840
**MIT**

VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.6
1+
1.3.0

Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.2.6"
1+
VERSION = "1.3.0"
22

33
require 'yaml'
44

@@ -13,7 +13,7 @@ MEMORY_SIZE = 512
1313
Vagrant.configure("2") do |config|
1414
config.vm.box = "ubuntu/trusty64"
1515

16-
config.vm.hostname = "php"
16+
config.vm.hostname = "drupal-compose"
1717

1818
config.vm.provider "virtualbox" do |v|
1919
name = "dockerizedrupal-drupal-compose-" + VERSION

0 commit comments

Comments
 (0)