From 3e1b8b6f360f81f0611cdad008bc2c9688ce96a2 Mon Sep 17 00:00:00 2001 From: James Robey Date: Wed, 18 Sep 2024 13:35:40 -0700 Subject: [PATCH] Add explicit URL for Ubuntu 23.10 box (no longer hosted on Vagrant Cloud) Note: Mantic64 (23.10) is now [END OF LIFE - for reference only]. The most current Ubuntu image that is not EOL is Jammy64 (22.04) & this is still available on Vagrant Cloud. Ubuntu will no longer provide official Vagrant images starting with version 24. For more details, see the release notes: [Ubuntu 24.04 LTS - Noble Numbat](https://discourse.ubuntu.com/t/ubuntu-24-04-lts-noble-numbat-release-notes/39890). --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index e0243389..c809a2a1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,6 +2,7 @@ # vi: set ft=ruby : Vagrant.configure('2') do |config| config.vm.box = 'ubuntu/mantic64' # 23.10 + config.vm.box_url = "https://cloud-images.ubuntu.com/releases/23.10/release/ubuntu-23.10-server-cloudimg-amd64-vagrant.box" config.vm.hostname = 'rails-dev-box' config.vm.network :forwarded_port, guest: 3000, host: 3000