Skip to content
This repository has been archived by the owner on Dec 1, 2018. It is now read-only.

Commit

Permalink
Merge pull request #86 from blinkreaction/develop
Browse files Browse the repository at this point in the history
Release v1.7.0
  • Loading branch information
lmakarov authored Aug 26, 2016
2 parents 9db5a04 + c2d2e91 commit c0fed12
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 12 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.7.0 (2016-08-26)

- IMPORTANT: this release requires VirtualBox v5.1.x and Vagrant v1.8.5+
- Version updates
- blinkreaction/boot2docker base box v1.12.1
- docker cli 1.12.1
- docker-compose 1.8.0
- winpty 0.4.0 (Windows only)

## 1.6.2 (2016-06-27)

- Hotfix: Fixed broken winpty dependency since 1.6.0 on Windows
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ The stock boot2docker/docker-machine mounts host volumes via VirtualBox Guest Ad

<a name="requirements"></a>
## Prerequisites
1. [VirtualBox](https://www.virtualbox.org/) 5.0+
2. [Vagrant](https://www.vagrantup.com/) 1.7.3+
3. [Babun](http://babun.github.io) - A Linux-type shell, **Windows only**
1. [VirtualBox](https://www.virtualbox.org/) 5.1.x
2. [Vagrant](https://www.vagrantup.com/) 1.8.5+
3. [Babun](http://babun.github.io) - A Linux-type shell + [winpty](https://github.com/rprichard/winpty), **Windows only**

For best result and a clean setup it is recommended to remove any previous versions of VirtualBox, Vagrant, boot2docker, docker and docker-compose.

Expand Down Expand Up @@ -50,6 +50,8 @@ Designate a root folder that the VM will have access to (e.g. `~/Projects`) and

### Manual installation

Use these steps if you have VirtualBox and/or Vagrant already installed or prefer/need to install them manually.

1. Copy `Vagrantfile` and `vagrant.yml` into a designated folder
2. Inside the folder run

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.2
1.7.0
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ end
######################################################################

# Vagrant Box Configuration #
Vagrant.require_version ">= 1.7.3"
Vagrant.require_version ">= 1.8.5"

Vagrant.configure("2") do |config|
config.vm.define "boot2docker"

config.vm.box = "blinkreaction/boot2docker"
config.vm.box_version = "1.11.2"
config.vm.box_version = "1.12.1"
config.vm.box_check_update = true

## Network ##
Expand Down
4 changes: 2 additions & 2 deletions scripts/presetup-mac.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

DOCKER_VERSION=1.11.2
DOCKER_COMPOSE_VERSION=1.7.1
DOCKER_VERSION=1.12.1
DOCKER_COMPOSE_VERSION=1.8.0

# Console colors
red='\033[0;31m'
Expand Down
8 changes: 4 additions & 4 deletions scripts/presetup-win.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash

DOCKER_VERSION=1.11.2
DOCKER_COMPOSE_VERSION=1.7.1
DOCKER_VERSION=1.12.1
DOCKER_COMPOSE_VERSION=1.8.0
# These two shouldbe changes together. Always check https://github.com/rprichard/winpty/releases for the current version.
WINPTY_VERSION=0.3.1
CYGWIN_VERSION=2.5.1
WINPTY_VERSION=0.4.0
CYGWIN_VERSION=2.5.2
##

# Console colors
Expand Down

0 comments on commit c0fed12

Please sign in to comment.