Created
August 20, 2020 13:34
-
-
Save ohld/775c6a3459377aae3c066a2707215d67 to your computer and use it in GitHub Desktop.
How to update Metabase if it is deployed via Dokku (Docker) and you migrated from default H2 (in my case to Postgres)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure you migrated from default H2 db to production-ready (like Postgres) | |
# because otherwise you'll loose data (dashboards, graphs, users) | |
docker pull metabase/metabase:latest | |
docker tag metabase/metabase:latest dokku/lu-metabase:latest | |
dokku tags:deploy lu-metabase |
Author
ohld
commented
Nov 25, 2022
•
A full guide is here: Run & Update Metabase with Dokku
2023 guide to update Metabase which was deployed via Dokku:
dokku git:from-image metabase metabase/metabase:latest
dokku ps:rebuild metabase
2024 Update:
docker pull metabase/metabase:latest
dokku git:from-image metabase metabase/metabase:latest
dokku ps:rebuild metabase
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment