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

Commit 25534bf

Browse files
committed
Update
1 parent 8d8244f commit 25534bf

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
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.1.3';
2-
var new_version = '1.1.4';
1+
var current_version = '1.1.4';
2+
var new_version = '1.1.5';
33

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ This project is part of the [Dockerized Drupal](https://dockerizedrupal.com/) in
3434
-e HTTP_BASIC_AUTH_RANDOM_PASSWORD_LENGTH="32" \
3535
-e HTTP_BASIC_AUTH_RANDOM_PASSWORD_SALT="" \
3636
-d \
37-
dockerizedrupal/vhost:1.1.4
37+
dockerizedrupal/vhost:1.1.5
3838

3939
## Build the image
4040

4141
TMP="$(mktemp -d)" \
4242
&& git clone https://github.com/dockerizedrupal/vhost.git "${TMP}" \
4343
&& cd "${TMP}" \
44-
&& git checkout 1.1.4 \
45-
&& sudo docker build -t dockerizedrupal/vhost:1.1.4 . \
44+
&& git checkout 1.1.5 \
45+
&& sudo docker build -t dockerizedrupal/vhost:1.1.5 . \
4646
&& cd -
4747

4848
## 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.4
1+
1.1.5

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
vhost:
2-
image: dockerizedrupal/vhost:1.1.4
2+
image: dockerizedrupal/vhost:1.1.5
33
hostname: vhost
44
restart: always
55
ports:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vhost",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"dependencies": {
55
"grunt": "^0.4.5",
66
"grunt-replace": "^0.11.0"

src/vhost/run/modules/vhost/templates/index.php.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ function services($project) {
295295
vhost <small><%= @server_name %></small>
296296
<a href="https://hub.docker.com/r/dockerizedrupal/vhost/" target="_blank">
297297
<span class="current-version">
298-
<span class="label label-info">Current version: <span class="version">1.1.4</span></span>
298+
<span class="label label-info">Current version: <span class="version">1.1.5</span></span>
299299
</span>
300300
<span class="latest-version" data-version-file="https://raw.githubusercontent.com/dockerizedrupal/vhost/master/VERSION.md">
301301
<span class="label label-warning">New version is available <i class="fa fa-exclamation-circle"></i></span>

0 commit comments

Comments
 (0)