supabase / cli

Supabase CLI. Manage postgres migrations, run Supabase locally, deploy edge functions. Postgres backups. Generating types from your database schema.
https://supabase.com/docs/reference/cli/about
MIT License
1.07k stars 209 forks source link

how to run `supabase start` with nerdctl #2105

Closed mmohammadi9812 closed 7 months ago

mmohammadi9812 commented 7 months ago

Link https://supabase.com/docs/reference/cli/supabase-start#supabase-start

Describe the problem I have installed Supabase with brew. I'm using Lima on Mac and Nerdctl as docker. Running supabase start gives an error about docker not running and I couldn't find any issue or discussion about how to run this command with nerdctl

If docker is hardcoded, any explanation on how to run necessary containers would be great

Thanks

sweatybridge commented 7 months ago

The CLI doesn't use any hardcoded docker commands as it works directly with any docker-compatible container runtime. So nerdctl is irrelevant here but you do need either Colima or podman installed.

mmohammadi9812 commented 7 months ago

Ok, I will try it with them then. Thank you