-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: macOS上でDev Containersが動作しない問題を修正 #10207
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #10207 +/- ##
========================================
Coverage 69.23% 69.23%
========================================
Files 707 707
Lines 65407 65407
Branches 5213 5216 +3
========================================
+ Hits 45283 45286 +3
+ Misses 20124 20121 -3
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
一旦このプルリクエストはこれで |
とりあえずチェックアウトして動作確認を始めた ( |
👍 👍👍👍 |
VS Codeを完全終了して開き直した時(終了時に開いていたDev Containerをすぐに開きなおそうとする場合)に、次のような感じでエラーが出てくるのだけれど、これはMisskeyサイドではどうしようもない感じでしょうか?
|
@tamaina これは以下のような流れになってしまっていることが原因のため、これ用の設定がない限りはDev Containers側で修正するのは難しいかと思います (軽く探してみましたがこれ用の設定は見つかりませんでした...)
|
あ〜、即座に開き直すことはあまりないのでまあいいか |
What
restart: unless-stopped
を使用するように変更Why
pnpm install
に失敗していたためrestart: always
を指定しているとDev Containersを使用していない際にもRedisが立ち上がってしまうためAdditional info (optional)
EXDEV: cross-device link not permitted
という警告が発生しますが、Falling back to copying packages from store
という表示の通りフォールバックするため動作しますpnpm dev
を実行してもバックエンドが上がってきません。