Skip to content

Instantly share code, notes, and snippets.

@unnikked
Last active March 17, 2016 08:56
Show Gist options
  • Save unnikked/6bf9f4a96108f375e967 to your computer and use it in GitHub Desktop.
Save unnikked/6bf9f4a96108f375e967 to your computer and use it in GitHub Desktop.
Provision Huginn on a Vagrant Box via Docker
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
config.vm.provision "docker" do |d|
d.run "cantino/huginn",
args: "-it -p 3000:3000"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment