Skip to content

Latest commit

 

History

History
62 lines (45 loc) · 1.72 KB

README.md

File metadata and controls

62 lines (45 loc) · 1.72 KB

Metabase

Caddy as reverse proxy for Metabase, with MariaDB and phpMyAdmin.

🚀 Quick start

Download the compose.yaml file:

curl -O https://raw.githubusercontent.com/gremo/compose-selfhosted/main/src/metabase/compose.yaml

Create an empty .env file to hold environment variables:

touch .env

Tip

You can populate secrets in the .env file randomly:

{
 echo "DB_PASSWORD=$(head /dev/urandom | tr -dc 'A-Za-z0-9@$%&_+' | head -c10)"
 echo
} >> .env

⚙️ Environment variables

Important

Database root password is random, after starting the project run docker compose logs | grep -i "GENERATED ROOT PASSWORD" and note it.

Supported variables:

Variable Required Default Description
DOMAIN localhost The domain name
DB_USER metabase User for the DB_NAME database
DB_PASSWORD Y Password for the DB_NAME database
DB_NAME metabase Database name

🌐 Endpoints

docker compose up -d
Endpoint Service
http://localhost Metabase
http://localhost/phpmyadmin phpMyAdmin

🪄 Tips

A www redirection to non-www can be performed adding the following labels to the caddy service:

labels:
  caddy: www.${DOMAIN:-localhost}
  caddy.redir: "http://${DOMAIN:-localhost}{uri}"