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

Commit 4a27fe0

Browse files
committed
Bump version
1 parent 741cd41 commit 4a27fe0

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

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.1.1';
2-
var new_version = '1.1.2';
1+
var current_version = '1.1.2';
2+
var new_version = '1.2.0';
33

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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This project is part of the [Dockerized Drupal](https://dockerizedrupal.com/) in
1212
-v /apache/data \
1313
-v /apache/ssl \
1414
--entrypoint /bin/echo \
15-
dockerizedrupal/apache-2.2:1.1.2 "Data-only container for Apache."
15+
dockerizedrupal/apache-2.2:1.2.0 "Data-only container for Apache."
1616

1717
CONTAINER="apache" && sudo docker run \
1818
--name "${CONTAINER}" \
@@ -41,15 +41,15 @@ This project is part of the [Dockerized Drupal](https://dockerizedrupal.com/) in
4141
-e USER_ID="" \
4242
-e GROUP_ID="" \
4343
-d \
44-
dockerizedrupal/apache-2.2:1.1.2
44+
dockerizedrupal/apache-2.2:1.2.0
4545

4646
## Build the image
4747

4848
TMP="$(mktemp -d)" \
4949
&& git clone https://github.com/dockerizedrupal/docker-apache-2.2.git "${TMP}" \
5050
&& cd "${TMP}" \
51-
&& git checkout 1.1.2 \
52-
&& sudo docker build -t dockerizedrupal/apache-2.2:1.1.2 . \
51+
&& git checkout 1.2.0 \
52+
&& sudo docker build -t dockerizedrupal/apache-2.2:1.2.0 . \
5353
&& cd -
5454

5555
## Changing the container behaviour on runtime through environment variables

VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.2
1+
1.2.0

Vagrantfile

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

33
require 'yaml'
44

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apache:
2-
image: dockerizedrupal/apache-2.2:1.1.2
2+
image: dockerizedrupal/apache-2.2:1.2.0
33
hostname: apache
44
ports:
55
- "80:80"
@@ -28,7 +28,7 @@ apache:
2828
- USER_ID=
2929
- GROUP_ID=
3030
apache-data:
31-
image: dockerizedrupal/apache-2.2:1.1.2
31+
image: dockerizedrupal/apache-2.2:1.2.0
3232
hostname: apache-data
3333
entrypoint: ["/bin/echo", "Data-only container for Apache."]
3434
volumes:

package.json

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

tests/apache-2.2_kerberos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apache:
2-
image: dockerizedrupal/apache-2.2:1.1.2
2+
image: dockerizedrupal/apache-2.2:1.2.0
33
hostname: apache
44
environment:
55
- KERBEROS_DEFAULT_REALM=default-realm

0 commit comments

Comments
 (0)