This guide installs Metabase using Docker, which is the simplest supported self-hosted option.
3000 open to your admin networkdocker pull metabase/metabase:latest
docker run -d \
--name metabase \
-p 3000:3000 \
metabase/metabase:latest
Open http://your-server:3000 and follow the onboarding steps to create the admin account and connect your first database.
For production use, configure Metabase to store its metadata in an external database (PostgreSQL/MySQL) instead of the default embedded database. The official documentation explains the required environment variables and connection strings.
Check the Metabase installation documentation or reach out via our contact page.