質問編集履歴

1

コンソールログの追記

2020/07/04 10:20

投稿

is02
is02

スコア17

test CHANGED
File without changes
test CHANGED
@@ -17,3 +17,307 @@
17
17
  公式ドキュメント
18
18
 
19
19
  https://docs.docker.com/compose/rails/
20
+
21
+
22
+
23
+ ## 追記
24
+
25
+ ```console
26
+
27
+ Starting aaaa_db_1 ... done
28
+
29
+ exist
30
+
31
+ create README.md
32
+
33
+ create Rakefile
34
+
35
+ create config.ru
36
+
37
+ create .gitignore
38
+
39
+ force Gemfile
40
+
41
+ run git init from "."
42
+
43
+ Initialized empty Git repository in /railbook/.git/
44
+
45
+ create app
46
+
47
+ create app/assets/config/manifest.js
48
+
49
+ create app/assets/javascripts/application.js
50
+
51
+ create app/assets/javascripts/cable.js
52
+
53
+ create app/assets/stylesheets/application.css
54
+
55
+ create app/channels/application_cable/channel.rb
56
+
57
+ create app/channels/application_cable/connection.rb
58
+
59
+ create app/controllers/application_controller.rb
60
+
61
+ create app/helpers/application_helper.rb
62
+
63
+ create app/jobs/application_job.rb
64
+
65
+ create app/mailers/application_mailer.rb
66
+
67
+ create app/models/application_record.rb
68
+
69
+ create app/views/layouts/application.html.erb
70
+
71
+ create app/views/layouts/mailer.html.erb
72
+
73
+ create app/views/layouts/mailer.text.erb
74
+
75
+ create app/assets/images/.keep
76
+
77
+ create app/assets/javascripts/channels
78
+
79
+ create app/assets/javascripts/channels/.keep
80
+
81
+ create app/controllers/concerns/.keep
82
+
83
+ create app/models/concerns/.keep
84
+
85
+ create bin
86
+
87
+ create bin/bundle
88
+
89
+ create bin/rails
90
+
91
+ create bin/rake
92
+
93
+ create bin/setup
94
+
95
+ create bin/update
96
+
97
+ create bin/yarn
98
+
99
+ create config
100
+
101
+ create config/routes.rb
102
+
103
+ create config/application.rb
104
+
105
+ create config/environment.rb
106
+
107
+ create config/secrets.yml
108
+
109
+ create config/cable.yml
110
+
111
+ create config/puma.rb
112
+
113
+ create config/spring.rb
114
+
115
+ create config/environments
116
+
117
+ create config/environments/development.rb
118
+
119
+ create config/environments/production.rb
120
+
121
+ create config/environments/test.rb
122
+
123
+ create config/initializers
124
+
125
+ create config/initializers/application_controller_renderer.rb
126
+
127
+ create config/initializers/assets.rb
128
+
129
+ create config/initializers/backtrace_silencers.rb
130
+
131
+ create config/initializers/cookies_serializer.rb
132
+
133
+ create config/initializers/cors.rb
134
+
135
+ create config/initializers/filter_parameter_logging.rb
136
+
137
+ create config/initializers/inflections.rb
138
+
139
+ create config/initializers/mime_types.rb
140
+
141
+ create config/initializers/new_framework_defaults_5_1.rb
142
+
143
+ create config/initializers/wrap_parameters.rb
144
+
145
+ create config/locales
146
+
147
+ create config/locales/en.yml
148
+
149
+ create config/boot.rb
150
+
151
+ create config/database.yml
152
+
153
+ create db
154
+
155
+ create db/seeds.rb
156
+
157
+ create lib
158
+
159
+ create lib/tasks
160
+
161
+ create lib/tasks/.keep
162
+
163
+ create lib/assets
164
+
165
+ create lib/assets/.keep
166
+
167
+ create log
168
+
169
+ create log/.keep
170
+
171
+ create public
172
+
173
+ create public/404.html
174
+
175
+ create public/422.html
176
+
177
+ create public/500.html
178
+
179
+ create public/apple-touch-icon-precomposed.png
180
+
181
+ create public/apple-touch-icon.png
182
+
183
+ create public/favicon.ico
184
+
185
+ create public/robots.txt
186
+
187
+ create test/fixtures
188
+
189
+ create test/fixtures/.keep
190
+
191
+ create test/fixtures/files
192
+
193
+ create test/fixtures/files/.keep
194
+
195
+ create test/controllers
196
+
197
+ create test/controllers/.keep
198
+
199
+ create test/mailers
200
+
201
+ create test/mailers/.keep
202
+
203
+ create test/models
204
+
205
+ create test/models/.keep
206
+
207
+ create test/helpers
208
+
209
+ create test/helpers/.keep
210
+
211
+ create test/integration
212
+
213
+ create test/integration/.keep
214
+
215
+ create test/test_helper.rb
216
+
217
+ create test/system
218
+
219
+ create test/system/.keep
220
+
221
+ create test/application_system_test_case.rb
222
+
223
+ create tmp
224
+
225
+ create tmp/.keep
226
+
227
+ create tmp/cache
228
+
229
+ create tmp/cache/assets
230
+
231
+ create vendor
232
+
233
+ create vendor/.keep
234
+
235
+ create package.json
236
+
237
+ remove config/initializers/cors.rb
238
+
239
+ remove config/initializers/new_framework_defaults_5_1.rb
240
+
241
+ run bundle install
242
+
243
+ Don't run Bundler as root. Bundler can ask for sudo if it is needed, and installing your bundle
244
+
245
+ as root will break this application for all non-root users on this machine.
246
+
247
+ The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.
248
+
249
+ Fetching gem metadata from https://rubygems.org/............
250
+
251
+ Fetching gem metadata from https://rubygems.org/.
252
+
253
+ Resolving dependencies...
254
+
255
+ Bundler could not find compatible versions for gem "railties":
256
+
257
+ In snapshot (Gemfile.lock):
258
+
259
+ railties (= 5.1.5)
260
+
261
+
262
+
263
+ In Gemfile:
264
+
265
+ rails (~> 5.1.5) was resolved to 5.1.5, which depends on
266
+
267
+ railties (= 5.1.5)
268
+
269
+
270
+
271
+ sass-rails (~> 5.0) was resolved to 5.1.0, which depends on
272
+
273
+ railties (>= 5.2.0)
274
+
275
+
276
+
277
+ Running `bundle update` will rebuild your snapshot from scratch, using only
278
+
279
+ the gems in your Gemfile, which may resolve the conflict.
280
+
281
+
282
+
283
+ Bundler could not find compatible versions for gem "sprockets":
284
+
285
+ In snapshot (Gemfile.lock):
286
+
287
+ sprockets (= 4.0.2)
288
+
289
+
290
+
291
+ In Gemfile:
292
+
293
+ sass-rails (~> 5.0) was resolved to 5.0.7, which depends on
294
+
295
+ sprockets (< 4.0, >= 2.8)
296
+
297
+
298
+
299
+ rails (~> 5.1.5) was resolved to 5.1.5, which depends on
300
+
301
+ sprockets-rails (>= 2.0.0) was resolved to 3.2.1, which depends on
302
+
303
+ sprockets (>= 3.0.0)
304
+
305
+
306
+
307
+ Running `bundle update` will rebuild your snapshot from scratch, using only
308
+
309
+ the gems in your Gemfile, which may resolve the conflict.
310
+
311
+ run bundle exec spring binstub --all
312
+
313
+ bundler: command not found: spring
314
+
315
+ Install missing gem executables with `bundle install`
316
+
317
+ ```
318
+
319
+
320
+
321
+ フォルダの名前を「myapp」以外にすると、このようなログが出力されます。
322
+
323
+ myappの部分をすべて任意の名前のフォルダ名に変更したのですが、なぜこのような現象が起きるのでしょうか。