File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,11 @@ Vagrant.configure(2) do |config|
22
22
# Create a forwarded port mapping which allows access to a specific port
23
23
# within the machine from a port on the host machine. In the example below,
24
24
# accessing "localhost:8080" will access port 80 on the guest machine.
25
- config . vm . network "forwarded_port" , guest : 5000 , host : 5000
26
- config . vm . network "forwarded_port" , guest : 5001 , host : 5001
27
- config . vm . network "forwarded_port" , guest : 3306 , host : 3306
25
+ config . vm . network "forwarded_port" , guest : 5000 , host : 5000 # flask
26
+ config . vm . network "forwarded_port" , guest : 5001 , host : 5001 # flask
27
+ config . vm . network "forwarded_port" , guest : 3306 , host : 3306 # mysql
28
+ config . vm . network "forwarded_port" , guest : 5002 , host : 5002 # jupyter
29
+ config . vm . network "forwarded_port" , guest : 5003 , host : 5003 # reserved
28
30
29
31
# Create a private network, which allows host-only access to the machine
30
32
# using a specific IP.
You can’t perform that action at this time.
0 commit comments