Skip to content
Snippets Groups Projects
Commit b1325551 authored by ETL's avatar ETL
Browse files

Adds detail on network options

To listen on more than localhost, one must use the undocumented MB_JETTY_HOST variable. Ref issue ##1363
parent 4eb05547
Branches
Tags
No related merge requests found
......@@ -43,4 +43,13 @@ In this scenario all you need to do is make sure you launch Metabase with the co
Keep in mind that Metabase will be connecting from within your docker container, so make sure that either you're using a fully qualified hostname or that you've set a proper entry in your container's `/etc/hosts file`.
### More than just `localhost`
By default, Metabase will be listening on `localhost`. For a production server, you will want it to be listening on an external interface. This can be done by using the `MB_JETTY_HOST` environment variable.
docker run -d -p 3000:3000 \
-e "MB_JETTY_HOST=0.0.0.0" \
--name metabase metabase/metabase
Now that you’ve installed Metabase, it’s time to [set it up and connect it to your database](../setting-up-metabase.md).
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment