{"id":13852692,"url":"https://github.com/phusion/open-vagrant-boxes","last_synced_at":"2025-06-11T06:12:51.451Z","repository":{"id":11665737,"uuid":"14174479","full_name":"phusion/open-vagrant-boxes","owner":"phusion","description":"Docker-compatible Vagrant base boxes","archived":false,"fork":false,"pushed_at":"2015-09-24T05:16:18.000Z","size":423,"stargazers_count":518,"open_issues_count":10,"forks_count":61,"subscribers_count":32,"default_branch":"master","last_synced_at":"2024-08-05T22:41:51.544Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/phusion.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-06T14:16:54.000Z","updated_at":"2024-01-10T19:57:34.000Z","dependencies_parsed_at":"2022-07-14T02:20:35.276Z","dependency_job_id":null,"html_url":"https://github.com/phusion/open-vagrant-boxes","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phusion%2Fopen-vagrant-boxes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phusion%2Fopen-vagrant-boxes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phusion%2Fopen-vagrant-boxes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phusion%2Fopen-vagrant-boxes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phusion","download_url":"https://codeload.github.com/phusion/open-vagrant-boxes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225861666,"owners_count":17535983,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T22:01:32.434Z","updated_at":"2024-11-22T07:31:06.553Z","avatar_url":"https://github.com/phusion.png","language":"Shell","funding_links":[],"categories":["Shell"],"sub_categories":[],"readme":"# Docker-friendly Vagrant base boxes\n\n\u003cimg src=\"http://blog.phusion.nl/wp-content/uploads/2013/11/vagrant.png\" height=\"150\"\u003e\n\u003cimg src=\"http://blog.phusion.nl/wp-content/uploads/2013/11/docker.png\" height=\"150\"\u003e\n\nThis repository contains definitions for various Docker-friendly [Vagrant](http://www.vagrantup.com/) base boxes. There are boxes that are based on Ubuntu 12.04 64-bit, and boxes that are based on Ubuntu 14.04 64-bit. They differ from the ones provided by vagrantup.com in the following ways:\n\n * We provide 2 virtual CPUs by default, so that the boxes can make better use of multicore hosts.\n * We provide more RAM by default: 1 GB.\n * We provide a bigger virtual hard disk: around 40 GB.\n * We use LVM so that partitioning is easier.\n * On the Ubuntu 12.04 version, our default kernel version is 3.13 (instead of 3.2), so that you can use [Docker](http://www.docker.io/) out-of-the-box.\n * [The memory cgroup and swap accounting](http://docs.docker.io/en/latest/installation/ubuntulinux/#memory-and-swap-accounting) are turned on, for some Docker features.\n * Chef is installed via the Ubuntu packages that they provide, instead of via RubyGems. This way the box doesn't have to come with Ruby by default, making the environment cleaner.\n * Our VMWare Fusion boxes recompile VMWare Tools on every kernel upgrade, so that Shared Folders keep working even if you change the kernel.\n\nThese base boxes are automatically built from [Veewee](https://github.com/jedi4ever/veewee) definitions. These definitions make building boxes quick and unambigious. The entire building process is described in the definitions; no manual intervention is required.\n\nWe provide prebuilt boxes at https://oss-binaries.phusionpassenger.com/vagrant/boxes/, but you can build them yourself if you so wish.\n\nThe boxes are also available on [Vagrant Cloud](https://vagrantcloud.com/phusion).\n\n**Related resources**:\n [Github](https://github.com/phusion/open-vagrant-boxes) |\n [Prebuilt boxes](https://oss-binaries.phusionpassenger.com/vagrant/boxes/) |\n [Vagrant Cloud](https://vagrantcloud.com/phusion) |\n [Discussion forum](https://groups.google.com/forum/#!forum/passenger-docker) |\n [Twitter](https://twitter.com/phusion_nl) |\n [Blog](http://blog.phusion.nl)\n\n## Using these boxes in Vagrant\n\nIf you have Vagrant 1.5, you can use our boxes through [Vagrant Cloud](https://vagrantcloud.com/phusion):\n\n    vagrant init phusion/ubuntu-14.04-amd64\n    # -OR-\n    vagrant init phusion/ubuntu-12.04-amd64\n\nOn older Vagrant versions, you can modify your Vagrantfile to use our boxes. Here is an example Vagrantfile which works with both VirtualBox and VMWare Fusion. It also automatically installs the latest version of Docker.\n\n    # Vagrantfile API/syntax version. Don't touch unless you know what you're doing!\n    VAGRANTFILE_API_VERSION = \"2\"\n\n    Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|\n      config.vm.box = \"phusion-open-ubuntu-14.04-amd64\"\n      config.vm.box_url = \"https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-14.04-amd64-vbox.box\"\n      # Or, for Ubuntu 12.04:\n      #config.vm.box = \"phusion-open-ubuntu-12.04-amd64\"\n      #config.vm.box_url = \"https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-12.04-amd64-vbox.box\"\n\n      config.vm.provider :vmware_fusion do |f, override|\n        override.vm.box_url = \"https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-14.04-amd64-vmwarefusion.box\"\n        #override.vm.box_url = \"https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-12.04-amd64-vmwarefusion.box\"\n      end\n\n      # Only run the provisioning on the first 'vagrant up'\n      if Dir.glob(\"#{File.dirname(__FILE__)}/.vagrant/machines/default/*/id\").empty?\n        # Install Docker\n        pkg_cmd = \"wget -q -O - https://get.docker.io/gpg | apt-key add -;\" \\\n          \"echo deb http://get.docker.io/ubuntu docker main \u003e /etc/apt/sources.list.d/docker.list;\" \\\n          \"apt-get update -qq; apt-get install -q -y --force-yes lxc-docker; \"\n        # Add vagrant user to the docker group\n        pkg_cmd \u003c\u003c \"usermod -a -G docker vagrant; \"\n        config.vm.provision :shell, :inline =\u003e pkg_cmd\n      end\n    end\n\nYou can login with username `vagrant` and password `vagrant`. This user has sudo privileges. The root user also has password `vagrant`.\n\nThe prebuilt boxes are available at https://oss-binaries.phusionpassenger.com/vagrant/boxes/\n\n## Next steps\n\n[\u003cimg src=\"http://www.phusion.nl/assets/logo.png\"\u003e](http://www.phusion.nl/)\n\nThese Vagrant boxes are provided to you by [Phusion](http://www.phusion.nl/). You may want to check out these too:\n\n * [Discussion forum](https://groups.google.com/forum/#!forum/passenger-docker) - For discussions about this project.\n * [Phusion Passenger](https://www.phusionpassenger.com/) - A fast, robust application server for Ruby, Python, Node.js, and Meteor.\n * [baseimage-docker](https://github.com/phusion/baseimage-docker) - A minimal Ubuntu Docker base image modified for Docker-friendliness.\n * [The Phusion blog](http://blog.phusion.nl) - For interesting articles and updates.\n * [Follow us on Twitter](https://twitter.com/phusion_nl)\n\n## Building the boxes yourself\n\n### Setup your environment\n\n 1. Install [Vagrant](http://www.vagrantup.com/).\n 2. Install [VirtualBox](https://www.virtualbox.org/) or VMWare Fusion.\n 3. Install 7-zip (OS X: `brew install p7zip`).\n 4. `bundle install --path vendor`\n\n    The `--path` is important! Not installing with `--path` will break Vagrant.\n\n### Building a box and importing it into Vagrant\n\nVirtualBox:\n\n    bundle exec rake virtualbox:ubuntu-14.04-amd64:all\n    bundle exec rake virtualbox:ubuntu-12.04-amd64:all\n\nVMWare Fusion:\n\n    bundle exec rake vmware_fusion:ubuntu-14.04-amd64:all\n    bundle exec rake vmware_fusion:ubuntu-12.04-amd64:all\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphusion%2Fopen-vagrant-boxes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphusion%2Fopen-vagrant-boxes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphusion%2Fopen-vagrant-boxes/lists"}