This is a docker image for PrestoDB with Hive connector.
It requires a working Hive cluster since the default configuration files are for hive connector only. See https://prestodb.io/docs/current/installation/deployment.html Where it assumes Hive metastore listens on thrift://hive-metastore:9083
docker run -d -p 8080:8080 shawnzhu/prestodb:0.181
It's capable to change configuration like hive.metastore.uri
by binding new directory under /opt/presto/etc
. E.g., given configuration file /foo/bar/hive.properties
:
docker run -d -p 8080:8080 -v /foo/bar/hive.properties:/opt/presto/etc/catalog/hive.properties:ro shawnzhu/prestodb:0.181