Skip to content

Commit

Permalink
Update to v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ixkaito committed May 21, 2015
1 parent 38799bb commit a5b589f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This repository provides a template Vagrantfile to create a Docker-based rapid d

## Version

0.4.0
0.5.0

## Documentation

Expand Down
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ Vagrant.configure("2") do |config|
config.vm.hostname = "wocker.dev"
config.vm.network :private_network, ip: "172.17.8.23"

config.vm.synced_folder "./data", "/home/core/data", create: true, id: "core", :nfs => true, :mount_options => ['nolock,vers=3,udp']
config.vm.synced_folder "./data", "/home/core/data", create: true, id: "core", nfs: true, mount_options: ['nolock,vers=3,udp']

config.vm.provision :shell, :privileged => false, :inline => <<-EOS
config.vm.provision :shell, privileged: false, inline: <<-EOS
curl -O https://raw.githubusercontent.com/wckr/wocker-bashrc/master/bashrc && mv -f bashrc ~/.bashrc && source ~/.bashrc
docker pull wocker/wocker:latest
wocker run --name wocker
Expand Down

0 comments on commit a5b589f

Please sign in to comment.