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 #41 from blinkreaction/develop
Browse files Browse the repository at this point in the history
Release v1.0.1
  • Loading branch information
lmakarov committed Sep 14, 2015
2 parents 5b38fec + 1e1e38a commit 1d626a7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.1 (2015-09-14)

- Host's home directory mapping (`~ => /.home`) to make SSH keys and other credentials and configs available to containers.

## 1.0.0 (2015-09-14)

- SMB mounts on Windows
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
7 changes: 6 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,12 @@ Vagrant.configure("2") do |config|
mount_options: ["dmode=770", "fmode=660"]
end

# Make host SSH keys available to containers on /.ssh
# Make host home directory available to containers in /.home
if File.directory?(File.expand_path("~"))
config.vm.synced_folder "~", "/.home"
end

# Make host SSH keys available to containers in /.ssh (legacy, TO BE REMOVED soon)
if File.directory?(File.expand_path("~/.ssh"))
config.vm.synced_folder "~/.ssh", "/.ssh"
end
Expand Down

0 comments on commit 1d626a7

Please sign in to comment.