- # port forward for webrick on 3000
- config.vm.network :forwarded_port, guest: 3000, host: 3000
+ # Use sshfs sharing if available, otherwise NFS sharing
+ sharing_type = Vagrant.has_plugin?("vagrant-sshfs") ? "sshfs" : "nfs"
+
+ # use third party image and sshfs or NFS sharing for lxc
+ config.vm.provider "lxc" do |_, override|
+ override.vm.box = "generic/ubuntu2404"
+ override.vm.synced_folder ".", "/srv/openstreetmap-website", :type => sharing_type
+ end
+
+ # use third party image and sshfs or NFS sharing for libvirt
+ config.vm.provider "libvirt" do |_, override|
+ override.vm.box = "generic/ubuntu2404"
+ override.vm.synced_folder ".", "/srv/openstreetmap-website", :type => sharing_type
+ end