Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhicwu/docker-presto
Facebook Presto docker image for development and testing purposes. https://hub.docker.com/r/zhicwu/presto/
https://github.com/zhicwu/docker-presto
Last synced: 3 months ago
JSON representation
Facebook Presto docker image for development and testing purposes. https://hub.docker.com/r/zhicwu/presto/
- Host: GitHub
- URL: https://github.com/zhicwu/docker-presto
- Owner: zhicwu
- Created: 2016-02-12T02:26:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-04-28T00:13:17.000Z (over 8 years ago)
- Last Synced: 2024-07-20T23:45:13.424Z (4 months ago)
- Language: Shell
- Size: 8.79 KB
- Stars: 9
- Watchers: 2
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-presto
Facebook Presto docker image for development and testing purposes.## What's inside
```
ubuntu:14.04
|
|--- zhicwu/java:8
|
|--- zhicwu/presto:latest
```
* Official Ubuntu Trusty(14.04) docker image
* Oracle JDK 8 latest release
* [Facebook Presto](http://prestodb.io/) latest release## How to use
- Pull the image
```
# docker pull zhicwu/presto:latest
```
- Setup scripts
```
# git clone https://github.com/zhicwu/docker-presto.git
# cd docker-presto
# chmod +x *.sh
```
- Start Presto
```
# ./start-presto.sh
# docker logs -f my-presto
...
# docker exec -it my-presto bash
# cd /presto
# ./presto --server presto:8080 --catalog jmx --schema jmx
presto:jmx> show tables;
```