问题标签 [vagrantfile]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
vagrant - 是否可以在 Vagrantfile 中要求某些 Vagrant 和 VirtualBox 版本?
我最近注意到我设法安装了一个无法与我的Vagrantfile
. 升级到最新的 Vagrant & VirtualBox 解决了这个问题。
是否可以确保在允许vagrant up
启动之前安装最低 Vagrant 和 VirtualBox 版本?
vagrant - 重新使用现有的 Vagrant 盒子
我已经下载并配置了一个用于 wordpress 开发的 Vagrant 盒子,现在我想将一个 Vagrant 盒子用于 Discourse,我需要从头开始重新下载 Ubuntu 并配置它吗?
有没有办法使用现有的盒子/虚拟机而无需重新下载。
vagrant - 如何使用 vagrant 1.6 和 docker 提供者映射 docker 端口
我目前正在尝试将我的 docker 容器端口从容器映射到主机(boot2docker)。最终目标是将这些端口映射到我的物理机器上,但一步一步。
我的 Vagrantfile 目前看起来像:
当我运行vagrant up app1 --provider=docker
容器时,容器会正确启动,但是当我执行 docker ps 时,我可以看到端口没有被映射。
我正在使用 VirtualBox,所以我使用它的 GUI 将我的物理机端口转发8080
到主机 (boot2docker) 8080
。
wordpress - 改变 Vagrant Vagrants 将 wordpress-trunk 切换到 git
我正在尝试将 Varying Vagrant Vagrant 的wordpress-trunk
(或开发)站点转换为通过 git 而不是 svn 进行配置。
似乎有一个脚本(我认为它是一个脚本,即使它没有文件扩展名)作为 VVV 项目的一部分,将在配置机器后切换:
https://github.com/Varying-Vagrant-Vagrants/VVV/blob/master/config/homebin/develop_git
作者告诉我应该从命令行运行以下命令:
vagrant ssh -c "develop_git"
但是当我运行时,我收到以下错误:
未知密码类型“develop_git”
提供脚本中似乎有一些代码提到了 git,但我不知道我在看什么。
那么,有谁知道如何运行/实现该脚本?或者以其他方式将www/wordpress-trunk
文件夹转换为 git?首先是否有选项可以指示 VVV 从 git 配置主干文件夹?
ruby - 无法配置我的 Vagrant VM:Bad Interpreter (Chef solo - ruby)
这是我第一次使用 Vagrant,尝试使用 Java、Elasticsearch 和 Nginx 设置 debian 机器!但我无法配置我的虚拟机。这是我遇到的问题:
我不知道为什么它一直告诉我 chef-solo 和 ruby 位于那些地方,因为事实并非如此。它是在客户端机器上还是在主机上?
我试图更改位置,但没有更改错误消息。
这是我的流浪文件
有什么想法吗?
virtualbox - Why is Vagrant trying to SSH to Windows guest?
My host is running Windows 7 Pro (64 bit). The Guest OS in this case is Windows Server 2008 R2. The 'vagrant up' command is running into an issue where I keep getting:
till it eventually times out and says:
Timed out while waiting for the machine to boot. This means that Vagrant was unable to communicate with the guest machine within the configured ("config.vm.boot_timeout" value) time period. If you look above, you should be able to see the error(s) that Vagrant had when attempting to connect to the machine. These errors are usually good hints as to what may be wrong. If you're using a custom box, make sure that networking is properly working and you're able to connect to the machine. It is a common problem that networking isn't setup properly in these boxes. Verify that authentication configurations are also setup properly, as well. If the box appears to be booting properly, you may want to increase the timeout ("config.vm.boot_timeout") value.
The VM actually comes up fine, is accessible and usable.
- Why is it trying to even SSH to the Windows machine?
My Vagrantfile contents are:
vagrant - Vagrant up 错误:类 ImageNotConfiguredError 的超类不匹配
我正试图让 Vagrant 工作。我安装了所有东西,但是当我在终端中运行“vagrant up”时,出现以下错误
请让我知道如何解决此问题。谢谢!
ssh - 更改 Vagrantfile 会导致“vagrant ssh”提示输入密码?
我一直在尝试使用 Vagrant 设置环境,但我遇到了vagrant ssh
命令问题。
当我更改 Vagrantfile 中已安装共享文件夹的路径并执行 a时,如果没有它要求我输入密码vagrant reload
,我将无法再这样做。vagrant ssh
这是我对已安装共享的原始配置,它有效:
这是我试图更改的内容,但之后它不起作用vagrant reload
(要求我输入密码):
文件中的所有其他内容保持不变。知道这里发生了什么吗?