博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Vagrant 实例导出box
阅读量:5931 次
发布时间:2019-06-19

本文共 752 字,大约阅读时间需要 2 分钟。

  hot3.png

The easiest thing to do would be to package the pre-configured vagrant box and transfer the .box file to the other machine, add the box and run vagrant up.

So the steps look like below:

  1. Package the pre-configured box => vagrant package --base preconfigured_vm --output /path/to/mybox.box. Note that as per the docs, the --base option should be the UUID of the machine, or the name VirtualBox gives the machine (found when opening the VirtualBox application).
  2. transfer the box to the computer by using scp, rsync or whatever... (you also start a web server quickly by using python -m http.server PORT or ruby -run -e httpd /path/to -p PORT)
  3. Init and start vagrant init preconfigured_vm /path/to/mybox.box
  4. Done

转载于:https://my.oschina.net/lxrm/blog/613793

你可能感兴趣的文章
Nchain收购比特现金应用Handcash大部分股权
查看>>
Fly.js 拦截全局 Ajax 请求
查看>>
react-router知多少(一)
查看>>
PC端时间日历插件 功能齐全 无依赖
查看>>
WebRTC视频通话中最多能容纳多少用户?
查看>>
闲话图片上传
查看>>
归并排序及其优化
查看>>
vue2.x源码解析系列二: Vue组件初始化过程概要
查看>>
Chrome插件推荐
查看>>
Android内存测试方法梳理和实现原理简析
查看>>
一分钟实现Android遮罩引导视图
查看>>
使用 fastlane 实现自动化打包
查看>>
(五)神经网络入门之构建多层网络
查看>>
分析WordPress中esc_sql函数引起的注入危害
查看>>
第二届网易前端技术大会-启航
查看>>
基于Vert.x和RxJava 2构建通用的爬虫框架
查看>>
bootstrap基本布局
查看>>
老牌语言依然强势,GO、Kotlin 等新语言为何不能破局?
查看>>
RxJava2系列之相较RxJava1的更新之处(二)
查看>>
JavaEE进阶知识学习-----SpringCloud(九)Zuul路由网关
查看>>