3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

supabase_vector_[アプリ名] container is not ready: unhealthy エラー対処方法 Supabaseローカル開発環境

Last updated at Posted at 2024-08-20

このエラーは、Dockerのコンテナとボリューム、イメージを全削除し、全く新しい場所にNext.jsとSupabaseをインストールしても再現されたので、記事を書いておきます。
(複数回同じ環境をインストールすると再現されました。)

Dockerを綺麗にする。
すべてのコンテナを表示
docker ps -a

Docker すべてのコンテナを停止します。
docker stop $(docker ps -q)

コンテナをすべて削除します (rmコマンドは起動中のものは削除できない)
docker rm $(docker ps -aq)

未使用のVolumeを一括削除
Volumeはコンテナを削除しないと消せない
docker volume prune

ターミナル
supabase_vector_[アプリ名] container is not ready: unhealthy

Supabaseのローカル開発環境のDockerでの👆️エラーで困ってたけど

に解決方法が載ってたので

analyticsの👇️ enabled = false にします。

configi.toml
[analytics]
enabled = false
port = 54327
# Configure one of the supported backends: `postgres`, `bigquery`.
backend = "postgres"

ローカル開発環境だから analytics いらないよねってことで無効化。

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?