WIP: run-in-vagrant
This commit is contained in:
parent
aef60aae17
commit
a10ef5848b
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,4 +3,5 @@ node_modules
|
|||||||
logs/*
|
logs/*
|
||||||
!logs
|
!logs
|
||||||
config/default.toml
|
config/default.toml
|
||||||
certs
|
certs
|
||||||
|
.vagrant/**
|
@ -175,6 +175,12 @@ Steps to do in VM:
|
|||||||
NODE_TLS_REJECT_UNAUTHORIZED='0' node ./index.js --path="./config/dev/"
|
NODE_TLS_REJECT_UNAUTHORIZED='0' node ./index.js --path="./config/dev/"
|
||||||
|
|
||||||
|
|
||||||
|
Install plugin for virtual box guest additions:
|
||||||
|
|
||||||
|
vagrant plugin install vagrant-vbguest
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Problems / to do
|
### Problems / to do
|
||||||
|
|
||||||
It worked once but now it does not work, don't know why.
|
It worked once but now it does not work, don't know why.
|
||||||
|
35
Vagrantfile
vendored
35
Vagrantfile
vendored
@ -12,7 +12,10 @@ Vagrant.configure("2") do |config|
|
|||||||
|
|
||||||
# Every Vagrant development environment requires a box. You can search for
|
# Every Vagrant development environment requires a box. You can search for
|
||||||
# boxes at https://vagrantcloud.com/search.
|
# boxes at https://vagrantcloud.com/search.
|
||||||
config.vm.box = "bento/ubuntu-16.04"
|
# config.vm.box = "bento/ubuntu-16.04"
|
||||||
|
config.vm.box = "ubuntu/impish64"
|
||||||
|
|
||||||
|
# config.vm.box = "ubuntu/xenial64"
|
||||||
|
|
||||||
# Disable automatic box update checking. If you disable this, then
|
# Disable automatic box update checking. If you disable this, then
|
||||||
# boxes will only be checked for updates when the user runs
|
# boxes will only be checked for updates when the user runs
|
||||||
@ -31,7 +34,7 @@ Vagrant.configure("2") do |config|
|
|||||||
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
|
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"
|
||||||
|
|
||||||
# Create a private network, which allows host-only access to the machine
|
# Create a private network, which allows host-only access to the machine
|
||||||
# using a specific IP.
|
# using a specific IP
|
||||||
# config.vm.network "private_network", ip: "192.168.33.10"
|
# config.vm.network "private_network", ip: "192.168.33.10"
|
||||||
|
|
||||||
# Create a public network, which generally matched to bridged network.
|
# Create a public network, which generally matched to bridged network.
|
||||||
@ -39,7 +42,7 @@ Vagrant.configure("2") do |config|
|
|||||||
# your network.
|
# your network.
|
||||||
config.vm.network "public_network"
|
config.vm.network "public_network"
|
||||||
|
|
||||||
config.ssh.forward_x11 = true
|
# config.ssh.forward_x11 = true
|
||||||
config.ssh.forward_agent = true
|
config.ssh.forward_agent = true
|
||||||
|
|
||||||
# Share an additional folder to the guest VM. The first argument is
|
# Share an additional folder to the guest VM. The first argument is
|
||||||
@ -55,11 +58,11 @@ Vagrant.configure("2") do |config|
|
|||||||
config.vm.provider "virtualbox" do |vb|
|
config.vm.provider "virtualbox" do |vb|
|
||||||
# Display the VirtualBox GUI when booting the machine
|
# Display the VirtualBox GUI when booting the machine
|
||||||
# vb.gui = true
|
# vb.gui = true
|
||||||
vb.customize [
|
# vb.customize [
|
||||||
"modifyvm", :id,
|
# "modifyvm", :id,
|
||||||
"--audio", "coreaudio",
|
# "--audio", "coreaudio",
|
||||||
"--audiocontroller", "hda"
|
# "--audiocontroller", "hda"
|
||||||
]
|
# ]
|
||||||
|
|
||||||
# Customize the amount of memory on the VM:
|
# Customize the amount of memory on the VM:
|
||||||
vb.memory = "1024"
|
vb.memory = "1024"
|
||||||
@ -71,9 +74,15 @@ Vagrant.configure("2") do |config|
|
|||||||
# Enable provisioning with a shell script. Additional provisioners such as
|
# Enable provisioning with a shell script. Additional provisioners such as
|
||||||
# Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
|
# Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
|
||||||
# documentation for more information about their specific syntax and use.
|
# documentation for more information about their specific syntax and use.
|
||||||
# config.vm.provision "shell", inline: <<-SHELL
|
config.vm.provision "shell", inline: <<-SHELL
|
||||||
# apt-get update
|
apt-get update
|
||||||
# apt-get install -y apache2
|
apt install docker.io
|
||||||
# SHELL
|
systemctl enable --now docker
|
||||||
config.vm.provision "shell", path: "install.sh", privileged: true
|
systemctl status docker
|
||||||
|
sudo groupadd docker
|
||||||
|
sudo usermod -aG docker $USER
|
||||||
|
docker --version
|
||||||
|
docker run hello-world
|
||||||
|
SHELL
|
||||||
|
# config.vm.provision "shell", path: "install.sh", privileged: true
|
||||||
end
|
end
|
||||||
|
13
install.sh
13
install.sh
@ -7,8 +7,13 @@ apt-get install -y curl
|
|||||||
apt-get install -y python-minimal
|
apt-get install -y python-minimal
|
||||||
curl -sL https://deb.nodesource.com/setup_8.x | bash
|
curl -sL https://deb.nodesource.com/setup_8.x | bash
|
||||||
apt-get install -y nodejs
|
apt-get install -y nodejs
|
||||||
sudo apt install -y alsa-utils
|
apt install -y alsa-utils
|
||||||
sudo apt-get install -y libasound2-dev
|
apt-get install -y libasound2-dev
|
||||||
sudo npm i -g node-gyp
|
npm i -g node-gyp
|
||||||
|
apt install -y alsa-base pulseaudio
|
||||||
|
|
||||||
mkdir simulator
|
mkdir simulator
|
||||||
|
cp -r /vagrant/* ~/simulator/
|
||||||
|
cd simulator
|
||||||
|
sudo chmod -R 755 *
|
||||||
|
sudo chown -R vagrant:vagrant *
|
||||||
|
1752
package-lock.json
generated
1752
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user