header background image

vagrant boxのnodejs、React開発環境

2018年2月24日☕️ 1 min read

Ubuntu16.04をベースとして、react,nodejs含む開発環境(日本語版)のVagrantイメージをvagrant cloudへアップロードしました。

環境詳細

項目設定内容
ベースOSUbuntu16.04
GUIlubuntu
言語日本語
adminユーザubuntu/ubuntu
インストール済のパッケージnodejs, npm, n, yarn, docker, docker-compose; VisualStudioCode, Chrome, RestAPIClient; Mozc;

ダウンロードURL

https://app.vagrantup.com/thundermiracle/boxes/lubuntu1604-ja

サンプルVagrantFile

Vagrant.configure("2") do |config|
  config.vm.box = "thundermiracle/lubuntu1604-ja"
  config.vm.box_version = "0.1.0"
  config.vm.synced_folder "~/code/nodejs", "/home/vagrant/Code"
  config.vm.provider "virtualbox" do |vb|
    # Display the VirtualBox GUI when booting the machine
    vb.gui = true
  end
end
ThunderMiracle

Blog part of ThunderMiracle.com

コメントは表示領域に入ると読み込みます