installation metabase to docker

Опубликовано: 24 Март 2023
на канале: Heikki Koivisto
3,372
16

Here's a brief description of how to deploy Metabase on Docker:

Install Docker on your machine if you haven't already.

Pull the Metabase Docker image from Docker Hub by running the following command in your terminal or command prompt:

version: '3'

services:
metabase:
image: metabase/metabase
container_name: metabase
ports:
"3000:3000"
volumes:
./metabase-data:/metabase-data
restart: always

Access Metabase by opening a web browser and navigating to http://localhost:3000. You should see the Metabase setup screen, where you can configure your database connection and start using Metabase.