$ make build
# make push
Presto cluster can be launched by using docker-compose.
$ make run
Images are uploaded in DockerHub. These images are build with the corresponding version of Presto.
command
is required to pass node id information which must be unique in a cluster.
version: '3'
services:
coordinator:
image: chethanuk/presto-coordinator:307
ports:
- "8080:8080"
container_name: "coordinator"
command: coordinator
worker0:
image: chethanuk/presto-worker:307
container_name: "worker0"
ports:
- "8081:8081"
command: worker0
worker1:
image: chethanuk/presto-worker:307
container_name: "worker1"
ports:
- "8082:8081"
command: worker1
Run
$ docker-compose up -d
User Mailing List: presto-users Users & Development Slack: prestosql.slack.com Twitter: @prestosql #prestosql #prestodb YouTube: Presto Channel
I have just build custom Dockerfiles with different tag and uploaded in my docker hub for my personal testing of prestosql.io and custom changes in future..