質問編集履歴

3

情報の追加

2021/04/05 11:08

投稿

divclass123
divclass123

スコア35

test CHANGED
File without changes
test CHANGED
@@ -245,3 +245,27 @@
245
245
  この記事の
246
246
 
247
247
  bin/serverとかやったので、それが関係してるのかもしれないです、、、。
248
+
249
+
250
+
251
+
252
+
253
+ またDocker Desktop を再起動したら
254
+
255
+
256
+
257
+
258
+
259
+ ```
260
+
261
+ [15/17] RUN bundle exec rails webpacker:compile:
262
+
263
+ #19 0.716 bundler: failed to load command: rails (/usr/local/bundle/bin/rails)
264
+
265
+ #19 0.716 Bundler::GemNotFound: Could not find marcel-1.0.0 in any of the sources
266
+
267
+ ```
268
+
269
+
270
+
271
+ とエラー内容が変わりました。

2

情報の追加

2021/04/05 11:08

投稿

divclass123
divclass123

スコア35

test CHANGED
File without changes
test CHANGED
@@ -196,6 +196,30 @@
196
196
 
197
197
 
198
198
 
199
+ entrypoint.sh
200
+
201
+ ```
202
+
203
+ #!/bin/bash
204
+
205
+ set -e
206
+
207
+
208
+
209
+ # Remove a potentially pre-existing server.pid for Rails.
210
+
211
+ rm -f /coffee_passport/tmp/pids/server.pid
212
+
213
+
214
+
215
+ # Then exec the container's main process (what's set as CMD in the Dockerfile).
216
+
217
+ exec "$@"
218
+
219
+ ```
220
+
221
+
222
+
199
223
  rails sをした覚えがありますが、切ったはずですし、ターミナルも一回再起動しました。
200
224
 
201
225
 

1

情報の追加

2021/04/05 10:39

投稿

divclass123
divclass123

スコア35

test CHANGED
File without changes
test CHANGED
@@ -207,3 +207,17 @@
207
207
  ホスト側の3000番portを強制的に開放させるコマンドを実行すれば解決するのでしょうか?
208
208
 
209
209
  またその、コマンドを御教授いただければ幸いです。
210
+
211
+
212
+
213
+ 関係ないかもしれませんが、
214
+
215
+
216
+
217
+ https://qiita.com/naoki85/items/51a8b0f2cbf949d08b11
218
+
219
+
220
+
221
+ この記事の
222
+
223
+ bin/serverとかやったので、それが関係してるのかもしれないです、、、。