質問編集履歴

1

コードの挿入

2018/09/20 07:41

投稿

mango
mango

スコア33

test CHANGED
File without changes
test CHANGED
@@ -23,3 +23,63 @@
23
23
 
24
24
 
25
25
  助けてください。
26
+
27
+
28
+
29
+ ```lang-
30
+
31
+
32
+
33
+ # -*- mode: ruby -*-
34
+
35
+ # vi: set ft=ruby :
36
+
37
+
38
+
39
+ # All Vagrant configuration is done below. The "2" in Vagrant.configure
40
+
41
+ # configures the configuration version (we support older styles for
42
+
43
+ # backwards compatibility). Please don't change it unless you know what
44
+
45
+ # you're doing.
46
+
47
+ Vagrant.configure("2") do |config|
48
+
49
+ # The most common configuration options are documented and commented below.
50
+
51
+ # For a complete reference, please see the online documentation at
52
+
53
+ # https://docs.vagrantup.com.
54
+
55
+
56
+
57
+ # Every Vagrant development environment requires a box. You can search for
58
+
59
+ # boxes at https://vagrantcloud.com/search.
60
+
61
+ config.vm.box = "centos/7"
62
+
63
+
64
+
65
+ # Disable automatic box update checking. If you disable this, then
66
+
67
+ # boxes will only be checked for updates when the user runs
68
+
69
+ # `vagrant box outdated`. This is not recommended.
70
+
71
+ # config.vm.box_check_update = false
72
+
73
+
74
+
75
+ # Create a forwarded port mapping which allows access to a specific port
76
+
77
+ # within the machine from a port on the host machine. In the example below,
78
+
79
+ # accessing "localhost:8080" will access port 80 on the guest machine.
80
+
81
+ "vagrantfile" 70L, 3013C
82
+
83
+
84
+
85
+ ```