setup-cli icon indicating copy to clipboard operation
setup-cli copied to clipboard

No response from `supabase_storage` container

Open rpie3 opened this issue 1 year ago • 1 comments

Bug report

  • [ x ] I confirm this is a bug with Supabase, not with my own application.
  • [ x ] I confirm I have searched the Docs, GitHub Discussions, and Discord.

Describe the bug

When using latest, I receive the following message while running an action which calls supabase db reset: failed to inspect container health: Error response from daemon: No such container: supabase_storage_repo-name

When explictly setting an earlier version, the issue is resolved. I have adjusted from

  - uses: supabase/setup-cli@v1
    with:
      version: latest

to

  - uses: supabase/setup-cli@v1
    with:
      version: 1.187.3

to get my actions running successfully again.

To Reproduce

Steps to reproduce the behavior, please provide code snippets or a repository:

Run the action:

on:
  pull_request:
  push:
    branches:
      - main
      - staging
  workflow_dispatch:

jobs:
  test:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - uses: supabase/setup-cli@v1
        with:
          version: latest

      - run: supabase db stop
      - run: supabase db start
      - run: supabase db reset

Expected behavior

latest should be functional for seeding Supabase.

System information

  • GitHub Action, using runs-on ubuntu-latest

rpie3 avatar Aug 13 '24 16:08 rpie3

Also started seeing this recently, anything we can do to further debug?

madeleineostoja avatar Sep 07 '24 10:09 madeleineostoja

You will need to start the full stack to use storage container.

    steps:
      - uses: actions/checkout@v4

      - uses: supabase/setup-cli@v1
        with:
          version: latest

      - run: supabase start

sweatybridge avatar Jul 23 '25 07:07 sweatybridge