Files
codeocean/Vagrantfile
Sebastian Serth 534fd651e9 Update Vagrant provision.sh to execute command as non-root user
Also, some commands were only available in an interactive shell, those were changed.

Signed-off-by: Sebastian Serth <Sebastian.Serth@student.hpi.de>
2018-03-09 15:23:07 +01:00

13 lines
368 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |v|
v.memory = 8192
end
config.vm.network "private_network", ip: "192.168.59.104"
# config.vm.synced_folder "../data", "/vagrant_data"
config.vm.provision "shell", path: "provision.sh", privileged: false
end