-
Notifications
You must be signed in to change notification settings - Fork 6
/
vm.yaml
28 lines (26 loc) · 888 Bytes
/
vm.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
nodes:
- _id: "0" # unique id. required
vm:
box: bento/ubuntu-18.04
# box_version:
# box_url:
# see more configure at: https://www.vagrantup.com/docs/boxes.html
networks:
- _id: "public-network" # unique id. required
type: "public_network"
ip:
- _id: "private-network" # unique id. required
type: "private_network"
ip:
# see more configure at: https://www.vagrantup.com/docs/networking/
synced_folders:
- _id: "entry-workspace" # unique id. required
type: rsync
host: "./workspace" # requirement
guest: "/home/vagrant/workspace" # requirement
rsync__exclude:
- ".git"
- ".idea"
- ".#*"
create: true # required
# see more configure at: https://www.vagrantup.com/docs/synced-folders/