Docker Upgrade - need some help

Hi Team

i am using MB with Docker connected to PostgrSQL and it working good
i want tot upgrade MB, so i am doing the following

My current version is :0.30.4
Server :ubuntu 18

here are the steps:

step1 :stop docker metabase container

sudo docker stop metabase

#step 2: killing metabase docker
sudo docker rm metabase

#step3 :running mb again
sudo docker run -d -p 80:3000 -e “MB_DB_TYPE=postgres” -e “MB_DB_DBNAME=metabase” -e “MB_DB_PORT=5432” -e “MB_DB_USER=username” -e “MB_DB_PASS=password” -e “MB_DB_HOST=my host here” --name metabase metabase/metabase

and to check i use
sudo docker logs -f metabase

logs show the same version

Can you tell if there is missing step?

thanks
Yoav

Hi all

found the answer in another thread

between step 2 and step 3
need to call

docker pull metabase/metabase:latest

thanks
Yoav

2 Likes