Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

Laravel Settler

The scripts that build the Laravel Homestead development environment.

End result can be found at https://app.vagrantup.com/laravel/boxes/homestead

Usage

You probably don't want this repo, follow instructions at https://laravel.com/docs/homestead instead.

If you know what you are doing:

  • Clone chef/bento into same top level folder as this repo.
  • Run ./bin/link-to-bento.sh
  • Run cd ../bento and work there for the remainder.
  • Follow normal Packer practice of building os_pkrvars/ubuntu/ubuntu-24.04-*.pkrvars.hcl

Building on aarch64:

cd <path/to>/bento
packer init -upgrade ./packer_templates
packer build -only=parallels-iso.vm -var-file=os_pkrvars/ubuntu/ubuntu-24.04-aarch64.pkrvars.hcl ./packer_templates

Building on x86-64:

cd <path/to>/bento
packer init -upgrade ./packer_templates
packer build -only=virtualbox-iso.vm -var-file=os_pkrvars/ubuntu/ubuntu-24.04-x86_64.pkrvars.hcl ./packer_templates