You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm writing a slim github action that just dumps the supabase types to check if it's up to date with the PR. Because of this, I don't need to run the majority of the supabase services. To accomplish this I'm running this line with the -x line to exclude them from starting up:
but then the output is showing that it is still pulling down the following docker images that I'd expect it to skip:
Status: Downloaded newer image for public.ecr.aws/supabase/gotrue:v2.170.0
Status: Downloaded newer image for public.ecr.aws/supabase/storage-api:v1.19.3
Status: Downloaded newer image for public.ecr.aws/supabase/realtime:v2.34.40
Describe the solution you'd like
It'd be great if it also skipped downloading these images to save time, but I'm wondering if I'm missing something that would make these still required to download during the start step? I don't have any experiencing writing in go, but I think it may have to do with this function and needs to also check against the excluded services list instead of only checking against the config
The text was updated successfully, but these errors were encountered:
I'm writing a slim github action that just dumps the supabase types to check if it's up to date with the PR. Because of this, I don't need to run the majority of the supabase services. To accomplish this I'm running this line with the
-x
line to exclude them from starting up:but then the output is showing that it is still pulling down the following docker images that I'd expect it to skip:
Describe the solution you'd like
It'd be great if it also skipped downloading these images to save time, but I'm wondering if I'm missing something that would make these still required to download during the start step? I don't have any experiencing writing in go, but I think it may have to do with this function and needs to also check against the excluded services list instead of only checking against the config
The text was updated successfully, but these errors were encountered: