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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
2024 Update: