Advertisement
pilasguru

Rocket.Chat 3000 Vagrantfile

Dec 26th, 2018
702
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.39 KB | None | 0 0
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3.  
  4. # https://rocket.chat/docs/installation/updating/#snap-installation
  5. #
  6. # Access Rocket.Chat:  http://localhost:3000
  7.  
  8. Vagrant.configure("2") do |config|
  9.   config.vm.box = "ubuntu/xenial64"
  10.  
  11.   config.vm.network "forwarded_port", guest: 3000, host: 3000
  12.  
  13.   config.vm.provision "shell", inline: <<-SHELL
  14.     snap install rocketchat-server
  15.   SHELL
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement