# dev-with-vagrant **Repository Path**: Zandy/dev-with-vagrant ## Basic Information - **Project Name**: dev-with-vagrant - **Description**: Vagrant + VirtualBox + 配置管理工具一键搭建开发环境 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-01-13 - **Last Updated**: 2022-10-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # repo - https://gitee.com/Zandy/dev-with-vagrant.git - https://github.com/Zandy/dev-with-vagrant.git # 插件 ```bash # @see https://github.com/sprotheroe/vagrant-disksize vagrant plugin install vagrant-disksize # @see https://github.com/dotless-de/vagrant-vbguest vagrant plugin install vagrant-vbguest # @see https://github.com/dergachev/vagrant-vbox-snapshot vagrant plugin install vagrant-vbox-snapshot ``` # box ## lts version ```bash config.vm.box = "ubuntu/trusty64" # 201404 config.vm.box = "ubuntu/xenial64" # 201604 config.vm.box = "ubuntu/bionic64" # 201804 config.vm.box = "ubuntu/focal64" # 202004 config.vm.box = "ubuntu/jammy64" # 202204 ``` ## no lts version ```bash config.vm.box = "ubuntu/kinetic64" # 202110 ``` # 使用 ```bash vagrant init vagrant up vagrant up --provision vagrant provision vagrant ssh vagrant halt vagrant destroy ```