{"id":13661511,"url":"https://github.com/rgl/alpine-vagrant","last_synced_at":"2025-08-20T22:31:09.129Z","repository":{"id":50787731,"uuid":"112109253","full_name":"rgl/alpine-vagrant","owner":"rgl","description":"This builds an up-to-date Vagrant Alpine Linux Base Box","archived":false,"fork":false,"pushed_at":"2024-09-26T08:00:38.000Z","size":64,"stargazers_count":32,"open_issues_count":1,"forks_count":16,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-07T22:11:07.165Z","etag":null,"topics":["alpine","alpine-linux","packer","vagrant"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rgl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2017-11-26T19:12:32.000Z","updated_at":"2025-01-19T14:20:52.000Z","dependencies_parsed_at":"2023-12-10T14:29:27.344Z","dependency_job_id":"0b2ecc43-e5f9-4db3-a9d3-2fdfa3dc961e","html_url":"https://github.com/rgl/alpine-vagrant","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rgl/alpine-vagrant","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Falpine-vagrant","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Falpine-vagrant/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Falpine-vagrant/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Falpine-vagrant/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rgl","download_url":"https://codeload.github.com/rgl/alpine-vagrant/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rgl%2Falpine-vagrant/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271397802,"owners_count":24752612,"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","status":"online","status_checked_at":"2025-08-20T02:00:09.606Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["alpine","alpine-linux","packer","vagrant"],"created_at":"2024-08-02T05:01:36.103Z","updated_at":"2025-08-20T22:31:09.119Z","avatar_url":"https://github.com/rgl.png","language":"Shell","readme":"This builds an up-to-date Vagrant Alpine Linux Base Box.\n\nCurrently this targets [Alpine Linux](https://alpinelinux.org/) 3.22.\n\n\n# Usage\n\nInstall [Packer (1.13+)](https://www.packer.io/) and [Vagrant (2.4+)](https://www.vagrantup.com/).\n\nIf you are on a Debian/Ubuntu host, you should also install and configure the NFS server. E.g.:\n\n```bash\n# install the nfs server.\nsudo apt-get install -y nfs-kernel-server\n\n# enable password-less configuration of the nfs server exports.\nsudo bash -c 'cat \u003e/etc/sudoers.d/vagrant-synced-folders' \u003c\u003c'EOF'\nCmnd_Alias VAGRANT_EXPORTS_CHOWN = /bin/chown 0\\:0 /tmp/*\nCmnd_Alias VAGRANT_EXPORTS_MV = /bin/mv -f /tmp/* /etc/exports\nCmnd_Alias VAGRANT_NFSD_CHECK = /etc/init.d/nfs-kernel-server status\nCmnd_Alias VAGRANT_NFSD_START = /etc/init.d/nfs-kernel-server start\nCmnd_Alias VAGRANT_NFSD_APPLY = /usr/sbin/exportfs -ar\n%sudo ALL=(root) NOPASSWD: VAGRANT_EXPORTS_CHOWN, VAGRANT_EXPORTS_MV, VAGRANT_NFSD_CHECK, VAGRANT_NFSD_START, VAGRANT_NFSD_APPLY\nEOF\n```\n\nFor more information see the [Vagrant NFS documentation](https://www.vagrantup.com/docs/synced-folders/nfs.html).\n\n\n## qemu-kvm usage\n\nInstall qemu-kvm:\n\n```bash\napt-get install -y qemu-kvm\napt-get install -y sysfsutils\napt-get install -y rng-tools\nsystool -m kvm_intel -v\n```\n\nBuild the box, and follow the printed instructions:\n\n```bash\nmake build-libvirt\n```\n\nTry the example guest:\n\n```bash\ncd example\napt-get install -y virt-manager libvirt-dev\nvagrant plugin install vagrant-libvirt\nvagrant up --provider=libvirt\nvagrant ssh\nexit\nvagrant destroy -f\n```\n\n# Packer boot_command\n\nThe following table describes the steps used to install Alpine Linux.\n\n| step                 | boot_command                                                          |\n|---------------------:|-----------------------------------------------------------------------|\n| login as root        | `root\u003center\u003e`                                                         |\n| bring up the network | `ifconfig eth0 up \u0026\u0026 udhcpc -i eth0\u003center\u003e\u003cwait5s\u003e`                   |\n| install              | `wget -qO- http://{{.HTTPIP}}:{{.HTTPPort}}/install.sh \\| ash\u003center\u003e` |\n\n# Reference\n\n* [Alpine setup scripts](https://wiki.alpinelinux.org/wiki/Alpine_setup_scripts)\n","funding_links":[],"categories":["Shell"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frgl%2Falpine-vagrant","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frgl%2Falpine-vagrant","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frgl%2Falpine-vagrant/lists"}