2018年2月24日 • ☕️ 1 min read

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

環境詳細

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

ダウンロードURL

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

サンプルVagrantFile

Copy
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

関連投稿

Dockerのコンテナー再起動(すべて、名前指定、Vagrant中のコンテナーの名前指定)

2018年6月26日

ThunderMiracle

Blog part of ThunderMiracle.com