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

Commit 5d63f98

Browse files
committed
Bump version
1 parent 4e56b50 commit 5d63f98

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

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.4';
2-
var new_version = '1.2.5';
1+
var current_version = '1.2.5';
2+
var new_version = '1.2.6';
33

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ 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.5 \
21+
&& git checkout 1.2.6 \
2222
&& sudo cp "${TMP}/drupal-compose.sh" /usr/local/bin/drupal-compose \
2323
&& sudo chmod +x /usr/local/bin/drupal-compose \
2424
&& cd -

VERSION.md

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

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.2.5"
1+
VERSION = "1.2.6"
22

33
require 'yaml'
44

drupal-compose.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
VERSION="1.2.5"
3+
VERSION="1.2.6"
44

55
WORKING_DIR="$(pwd)"
66

@@ -74,7 +74,7 @@ apache:
7474
extends:
7575
file: host.yml
7676
service: apache
77-
image: dockerizedrupal/apache-2.4:1.2.0
77+
image: dockerizedrupal/apache-2.4:${APACHE_24_TAG}
7878
hostname: apache
7979
volumes_from:
8080
- apache-data
@@ -87,7 +87,7 @@ apache:
8787
- VHOST_VERSION_FILE_URL=https://raw.githubusercontent.com/dockerizedrupal/docker-apache-2.4/master/VERSION.md
8888
- VHOST_REPOSITORY_URL=https://hub.docker.com/r/dockerizedrupal/apache-2.4/
8989
apache-data:
90-
image: dockerizedrupal/apache-2.4:1.2.0
90+
image: dockerizedrupal/apache-2.4:${APACHE_24_TAG}
9191
hostname: apache-data
9292
entrypoint: ["/bin/echo", "Data-only container for Apache."]
9393
volumes:
@@ -185,7 +185,7 @@ apache:
185185
extends:
186186
file: host.yml
187187
service: apache
188-
image: dockerizedrupal/apache-2.4:1.2.0
188+
image: dockerizedrupal/apache-2.4:${APACHE_24_TAG}
189189
hostname: apache
190190
volumes_from:
191191
- apache-data
@@ -198,7 +198,7 @@ apache:
198198
- VHOST_VERSION_FILE_URL=https://raw.githubusercontent.com/dockerizedrupal/docker-apache-2.4/master/VERSION.md
199199
- VHOST_REPOSITORY_URL=https://hub.docker.com/r/dockerizedrupal/apache-2.4/
200200
apache-data:
201-
image: dockerizedrupal/apache-2.4:1.2.0
201+
image: dockerizedrupal/apache-2.4:${APACHE_24_TAG}
202202
hostname: apache-data
203203
entrypoint: ["/bin/echo", "Data-only container for Apache."]
204204
volumes:
@@ -315,7 +315,7 @@ apache:
315315
extends:
316316
file: host.yml
317317
service: apache
318-
image: dockerizedrupal/apache-2.4:1.2.0
318+
image: dockerizedrupal/apache-2.4:${APACHE_24_TAG}
319319
hostname: apache
320320
volumes_from:
321321
- apache-data
@@ -328,7 +328,7 @@ apache:
328328
- VHOST_VERSION_FILE_URL=https://raw.githubusercontent.com/dockerizedrupal/docker-apache-2.4/master/VERSION.md
329329
- VHOST_REPOSITORY_URL=https://hub.docker.com/r/dockerizedrupal/apache-2.4/
330330
apache-data:
331-
image: dockerizedrupal/apache-2.4:1.2.0
331+
image: dockerizedrupal/apache-2.4:${APACHE_24_TAG}
332332
hostname: apache-data
333333
entrypoint: ["/bin/echo", "Data-only container for Apache."]
334334
volumes:
@@ -445,7 +445,7 @@ apache:
445445
extends:
446446
file: host.yml
447447
service: apache
448-
image: dockerizedrupal/apache-2.2:1.2.0
448+
image: dockerizedrupal/apache-2.2:${APACHE_22_TAG}
449449
hostname: apache
450450
volumes_from:
451451
- apache-data
@@ -458,7 +458,7 @@ apache:
458458
- VHOST_VERSION_FILE_URL=https://raw.githubusercontent.com/dockerizedrupal/docker-apache-2.2/master/VERSION.md
459459
- VHOST_REPOSITORY_URL=https://hub.docker.com/r/dockerizedrupal/apache-2.2/
460460
apache-data:
461-
image: dockerizedrupal/apache-2.2:1.2.0
461+
image: dockerizedrupal/apache-2.2:${APACHE_22_TAG}
462462
hostname: apache-data
463463
entrypoint: ["/bin/echo", "Data-only container for Apache."]
464464
volumes:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "drupal-compose",
3-
"version": "1.2.5",
3+
"version": "1.2.6",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/dockerizedrupal/drupal-compose.git"

0 commit comments

Comments
 (0)