{"id":15789761,"url":"https://github.com/jeffdecola/my-vagrant-boxes","last_synced_at":"2026-04-10T20:55:44.963Z","repository":{"id":45914392,"uuid":"183703129","full_name":"JeffDeCola/my-vagrant-boxes","owner":"JeffDeCola","description":"A place to keep my vagrant images (boxes).","archived":false,"fork":false,"pushed_at":"2023-07-10T07:35:05.000Z","size":575,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-05T22:03:20.248Z","etag":null,"topics":["docker","packer","vagrant","vagrant-boxes","vagrantfile","virtualbox"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JeffDeCola.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-04-26T22:53:37.000Z","updated_at":"2023-03-03T23:19:01.000Z","dependencies_parsed_at":"2024-10-26T03:26:32.533Z","dependency_job_id":"3d3297a1-956c-4475-a399-0c24e98cd8d5","html_url":"https://github.com/JeffDeCola/my-vagrant-boxes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeffDeCola%2Fmy-vagrant-boxes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeffDeCola%2Fmy-vagrant-boxes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeffDeCola%2Fmy-vagrant-boxes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JeffDeCola%2Fmy-vagrant-boxes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JeffDeCola","download_url":"https://codeload.github.com/JeffDeCola/my-vagrant-boxes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246516862,"owners_count":20790307,"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":["docker","packer","vagrant","vagrant-boxes","vagrantfile","virtualbox"],"created_at":"2024-10-04T22:03:21.900Z","updated_at":"2026-04-10T20:55:44.958Z","avatar_url":"https://github.com/JeffDeCola.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MY VAGRANT BOXES\n\n[![jeffdecola.com](https://img.shields.io/badge/website-jeffdecola.com-blue)](https://jeffdecola.com)\n[![MIT License](https://img.shields.io/:license-mit-blue.svg)](https://jeffdecola.mit-license.org)\n\n_A place to keep my vagrant images (boxes)._\n\ntl;dr\n\n```bash\n# BUILD \u0026 DEPLOY VAGRANT IMAGE (BOX)\nvagrant up\n\n## CONNECT\nvagrant ssh\nvagrant ssh-config\nssh -i ~/.vagrant.d/insecure_private_key -p 2222 vagrant@{IP}\n\n# OTHER COMMANDS\nvagrant box list\nvagrant box add --name {VAGRANT IMAGE (BOX) NAME} --force ubuntu-box.box\nvagrant box add --insecure {VAGRANT IMAGE (BOX) NAME}--insecure\nvagrant box remove {VAGRANT IMAGE (BOX) NAME}\n```\n\nTable of Contents\n\n* [OVERVIEW](https://github.com/JeffDeCola/my-vagrant-boxes#overview)\n* [DOCKER](https://github.com/JeffDeCola/my-vagrant-boxes#docker)\n* [VIRTUALBOX](https://github.com/JeffDeCola/my-vagrant-boxes#virtualbox)\n\nDocumentation and Reference\n\n* [vagrant](https://github.com/JeffDeCola/my-cheat-sheets/tree/master/software/development/development-environments/vagrant-cheat-sheet)\n* [vagrant box search](https://app.vagrantup.com/boxes/search)\n* an illustration of how\n  [vagrant, docker and packer](https://github.com/JeffDeCola/my-cheat-sheets/tree/master/software/operations/orchestration/builds-deployment-containers/packer-cheat-sheet#vagrant-docker-and-packer)\n  build and deploy images\n* [vagrant-remove-images.sh](https://github.com/JeffDeCola/my-linux-shell-scripts/tree/master/vagrant/vagrant-remove-images)\n* This repos\n  [github webpage](https://jeffdecola.github.io/my-vagrant-boxes/)\n  _built with\n  [concourse](https://github.com/JeffDeCola/my-vagrant-boxes/blob/master/ci-README.md)_\n\n## OVERVIEW\n\nVagrant is useful for the automated **BUILD** and **DEPLOY** of a custom image.\nThis is useful for easily launching a common custom design environment\nfor a project because you only need a Vagrantfile.\n\n![IMAGE - vagrant-overview - IMAGE](docs/pics/vagrant-overview.svg)\n\nThese builds and deploys use the following statement,\n\n**Using vagrant to build a/an {CUSTOM IMAGE FILE} image\ncontaining the {CUSTOM IMAGE OS} OS\nto deploy on {PROVIDER TOOL} on {HOST OS}.**\n\nWhere,\n\n* **CUSTOM IMAGE FILE**: docker/gce/virtualbox/etc.\n* **CUSTOM IMAGE OS**: ubuntu/alpine/windows/etc.\n* **PROVIDER TOOL**: docker/gce/virtualbox/etc.\n* **HOST OS**: linux/windows _(not needed)_\n\n## DOCKER\n\n_I'm not sure anyone would use this since you can just use docker._\n\n* [vagrant-ubuntu-2004-deploy-docker](https://github.com/JeffDeCola/my-vagrant-boxes/tree/master/docker/vagrant-ubuntu-2004-deploy-docker)\n\n  _Using vagrant to build a docker image\n  containing the ubuntu 20.04 OS\n  to deploy on docker._\n\n## VIRTUALBOX\n\n_You may run this on linux or windows._\n\n* [vagrant-ubuntu-2204-deploy-virtualbox](https://github.com/JeffDeCola/my-vagrant-boxes/tree/master/virtualbox/vagrant-ubuntu-2204-deploy-virtualbox)\n\n  _Using vagrant to build a virtualbox image\n  containing the ubuntu 22.04 OS\n  to deploy on virtualbox._\n\n* [vagrant-windows-11-deploy-virtualbox](https://github.com/JeffDeCola/my-vagrant-boxes/tree/master/virtualbox/vagrant-windows-11-deploy-virtualbox)\n\n  _Using vagrant to build a virtualbox image\n  containing the windows 11 OS\n  to deploy on virtualbox._\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeffdecola%2Fmy-vagrant-boxes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeffdecola%2Fmy-vagrant-boxes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeffdecola%2Fmy-vagrant-boxes/lists"}