Supabase

Open source Firebase alternative for building secure, scalable Postgres-backed apps.

Access

Dashboard URL: http://<SERVER_IP>:8000

Login with:

  • Username: supabase
  • Password: value of DASHBOARD_PASSWORD in /root/supabase/.env

Key Directories and Files

  • Supabase stack files and docker-compose.yml: /root/supabase/
  • Environment configuration (all secrets and credentials): /root/supabase/.env
  • Persistent data (Postgres, API state, etc.): /root/supabase/volumes/
  • Docker storage and images: /var/lib/docker/

Applying Configuration Changes

If you make changes to the .env file, docker-compose.yml, or other configurations, you must recreate the containers for changes to take effect.

# Stop and remove all containers
docker compose down

# Recreate and start the containers
docker compose up -d

This process will cause brief downtime.

Simply restarting the containers without running down first will not apply configuration changes.

 

Application Details