From c7c4aabf107da9df49bebe99460a37731394c99a Mon Sep 17 00:00:00 2001 From: yibo <7483137+xyb994@users.noreply.github.com> Date: Mon, 1 Jul 2024 15:56:43 -0400 Subject: [PATCH] Update Vagrantfile --- Vagrantfile | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 3db02f1..9e9e18d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -13,16 +13,13 @@ Vagrant.configure(2) do |config| config.vm.provider "virtualbox" do |vb| vb.name = "template" + vb.memory = "3333" + vb.cpus = "3" end - config.vm.provider "virtualbox" do |vb| - vb.memory = "3333" - vb.cpus = "3" - end - - config.push.define "atlas" do |push| - push.app = "treehouses/buster64" - end +# config.push.define "atlas" do |push| +# push.app = "treehouses/buster64" +# end config.vm.post_up_message = "treehouses debian box - see https://github.com/treehouses/template/issues for help and bug reports"