Complete the code to start the Supabase Docker container with the correct image tag.
docker run -d --name supabase [1]The edge tag is used to run the latest build of Supabase for self-hosting.
Complete the command to expose Supabase's Postgres port correctly.
docker run -d -p [1]:5432 supabase/supabase:edge
Port 5432 is the default Postgres port and should be exposed to the same port on the host.
Fix the error in the environment variable setting for the Supabase API key.
docker run -d -e SUPABASE_API_KEY=[1] supabase/supabase:edgeEnvironment variable values should be enclosed in double quotes to be interpreted correctly.
Fill both blanks to configure Supabase to use a custom Postgres data directory and port.
docker run -d -v [1]:/var/lib/postgresql/data -p [2]:5432 supabase/supabase:edge
The volume mount uses the custom directory /custom/pgdata and the host port is set to 5433 to avoid conflicts.
Fill all three blanks to set environment variables for Supabase's JWT secret, API key, and database URL.
docker run -d -e JWT_SECRET=[1] -e SUPABASE_API_KEY=[2] -e DATABASE_URL=[3] supabase/supabase:edge
All environment variable values should be enclosed in double quotes for proper parsing.