зеркало из https://github.com/microsoft/docker.git
Merge pull request #515 from drnic/vagrant_overrides
Allow reuse of existing vagrant boxes by env variables
This commit is contained in:
Коммит
e392b7ee9b
|
@ -1,8 +1,8 @@
|
||||||
# -*- mode: ruby -*-
|
# -*- mode: ruby -*-
|
||||||
# vi: set ft=ruby :
|
# vi: set ft=ruby :
|
||||||
|
|
||||||
BOX_NAME = "ubuntu"
|
BOX_NAME = ENV['BOX_NAME'] || "ubuntu"
|
||||||
BOX_URI = "http://files.vagrantup.com/precise64.box"
|
BOX_URI = ENV['BOX_URI'] || "http://files.vagrantup.com/precise64.box"
|
||||||
PPA_KEY = "E61D797F63561DC6"
|
PPA_KEY = "E61D797F63561DC6"
|
||||||
|
|
||||||
Vagrant::Config.run do |config|
|
Vagrant::Config.run do |config|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче