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

Commit 5052cef

Browse files
committed
1 parent 235835a commit 5052cef

8 files changed

Lines changed: 14 additions & 22 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM dockerizedrupal/base-debian-jessie:1.1.0
1+
FROM dockerizedrupal/base-debian-jessie:2.0.0
22

33
MAINTAINER Jürgen Viljaste <j.viljaste@gmail.com>
44

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.8';
2-
var new_version = '1.1.9';
1+
var current_version = '1.1.9';
2+
var new_version = '2.0.0';
33

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

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
> **Notice:** *This project is part of the [Dockerized Drupal](https://dockerizedrupal.com/) initiative.*
2-
31
# vhost
42

5-
The front page of your development environment.
3+
The front page of your Drupal development environment.
64

75
## Run the container
86

@@ -11,7 +9,7 @@ The front page of your development environment.
119
-h "${CONTAINER}" \
1210
--entrypoint /bin/echo \
1311
-v /vhost \
14-
dockerizedrupal/vhost:1.1.9 "Data-only container for vhost."
12+
dockerizedrupal/vhost:2.0.0 "Data-only container for vhost."
1513

1614
CONTAINER="vhost" && sudo docker run \
1715
--name "${CONTAINER}" \
@@ -35,21 +33,17 @@ The front page of your development environment.
3533
-e HTTP_BASIC_AUTH_RANDOM_PASSWORD_LENGTH="32" \
3634
-e HTTP_BASIC_AUTH_RANDOM_PASSWORD_SALT="" \
3735
-d \
38-
dockerizedrupal/vhost:1.1.9
36+
dockerizedrupal/vhost:2.0.0
3937

4038
## Build the image
4139

4240
TMP="$(mktemp -d)" \
4341
&& git clone https://github.com/dockerizedrupal/vhost.git "${TMP}" \
4442
&& cd "${TMP}" \
45-
&& git checkout 1.1.9 \
46-
&& sudo docker build -t dockerizedrupal/vhost:1.1.9 . \
43+
&& git checkout 2.0.0 \
44+
&& sudo docker build -t dockerizedrupal/vhost:2.0.0 . \
4745
&& cd -
4846

49-
## Changing the container behaviour on runtime through environment variables
50-
51-
// TODO
52-
5347
## License
5448

5549
**MIT**

VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.9
1+
2.0.0

Vagrantfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
VERSION = "1.1.9"
2-
3-
require 'yaml'
1+
VERSION = "2.0.0"
42

53
required_plugins = %w(vagrant-vbguest)
64

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
vhost:
2-
image: dockerizedrupal/vhost:1.1.9
2+
image: dockerizedrupal/vhost:2.0.0
33
hostname: vhost
44
restart: always
55
ports:
@@ -24,7 +24,7 @@ vhost:
2424
- HTTP_BASIC_AUTH_RANDOM_PASSWORD_LENGTH=32
2525
- HTTP_BASIC_AUTH_RANDOM_PASSWORD_SALT=
2626
vhost-data:
27-
image: dockerizedrupal/vhost:1.1.9
27+
image: dockerizedrupal/vhost:2.0.0
2828
hostname: vhost-data
2929
entrypoint: ["/bin/echo", "Data-only container for vhost."]
3030
volumes:

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.9",
3+
"version": "2.0.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/dockerizedrupal/vhost.git"

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.9</span></span>
298+
<span class="label label-info">Current version: <span class="version">2.0.0</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)