Skip to content

Commit

Permalink
4 cpu and 4096 + dev in compose
Browse files Browse the repository at this point in the history
  • Loading branch information
r4ulcl committed Jul 24, 2024
1 parent 70eee6d commit 0e4a62a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
aps:
image: r4ulcl/wifichallengelab-aps:latest
image: r4ulcl/wifichallengelab-aps:dev
#build: ./APs/ # uncomment to build the Docker file
restart: unless-stopped
container_name: WiFiChallengeLab-APs
Expand All @@ -12,7 +12,7 @@ services:
privileged: true #NETNS

clients:
image: r4ulcl/wifichallengelab-clients:latest
image: r4ulcl/wifichallengelab-clients:dev
#build: ./Clients/ # uncomment to build the Docker file
restart: unless-stopped
container_name: WiFiChallengeLab-Clients
Expand Down
12 changes: 6 additions & 6 deletions vagrant/vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Vagrant.configure("2") do |config|
hyper_v_vm.vm.hostname = "WiFiChallengeLab"
hyper_v_vm.vm.provider "hyperv" do |hv|
hv.vmname = "WiFiChallenge Lab v2.0.4"
hv.memory = 2048
hv.cpus = 2
hv.memory = 4096
hv.cpus = 4
end
hyper_v_vm.vm.provision :shell, path: "./install.sh"
hyper_v_vm.vm.synced_folder "../", "/media/WiFiChallenge", type: "rsync"
Expand All @@ -24,8 +24,8 @@ Vagrant.configure("2") do |config|
virtualbox_vm.vm.define "WiFiChallengeLab vbox"
virtualbox_vm.vm.hostname = "WiFiChallengeLab"
virtualbox_vm.vm.provider "virtualbox" do |vb|
vb.memory = "2048"
vb.cpus = 2
vb.memory = "4096"
vb.cpus = 4
vb.name = "WiFiChallenge Lab v2.0.4"
end
virtualbox_vm.vm.provision :shell, path: "./install.sh"
Expand All @@ -41,9 +41,9 @@ Vagrant.configure("2") do |config|
v.clone_directory = "E:/VMWare"
v.force_vmware_license = "workstation" # force the licence for fix some vagrant plugin issue
v.gui = true
v.memory = "2048"
v.cpus = 2
v.vmx["displayName"] = "WiFiChallenge Lab v2.0.4"
v.memory = "4096"
v.cpus = 4
end
#vmware_vm.vm.network "private_network", ip: "192.168.57.10"
vmware_vm.vm.hostname = "WiFiChallengeLab"
Expand Down

0 comments on commit 0e4a62a

Please sign in to comment.