mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Kill SSH connection to force re-connecting and updating group membership in order to correct Docker daemon error
32 lines
1 KiB
Ruby
32 lines
1 KiB
Ruby
# -*- mode: ruby -*-
|
|
# vi: set ft=ruby :
|
|
|
|
# Specify Vagrant version, Vagrant API version, and Vagrant clone location
|
|
Vagrant.require_version ">= 1.6.0"
|
|
VAGRANTFILE_API_VERSION = "2"
|
|
ENV['VAGRANT_VMWARE_CLONE_DIRECTORY'] = '~/.vagrant'
|
|
|
|
# Create and configure the VM(s)
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
|
|
# Assign a friendly name to this host VM
|
|
config.vm.hostname = "docker-host"
|
|
|
|
# Skip checking for an updated Vagrant box
|
|
config.vm.box_check_update = false
|
|
|
|
# Always use Vagrant's default insecure key
|
|
config.ssh.insert_key = false
|
|
|
|
# Spin up a "host box" for use with the Docker provider
|
|
# and then provision it with Docker
|
|
config.vm.box = "slowe/ubuntu-trusty-x64"
|
|
config.vm.provision "docker"
|
|
|
|
# Kill SSH connection to Docker Host
|
|
# Workaround for Vagrant issue #3998 related to group memberships
|
|
config.vm.provision "shell", inline: "ps aux | grep 'sshd:' | awk '{print $2}' | xargs kill"
|
|
|
|
# Disable synced folders (prevents an NFS error on "vagrant up")
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
end
|