1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-02-13 13:58:51 +02:00
dockerfiles/presto/docker-compose.yml

20 lines
348 B
YAML
Raw Normal View History

2018-08-21 18:06:54 +08:00
coordinator:
2019-06-16 16:24:14 +08:00
image: vimagick/presto
2018-08-21 18:06:54 +08:00
ports:
- "8080:8080"
volumes:
2019-06-16 16:24:14 +08:00
- ./conf/coordinator:/opt/presto/etc
2018-08-21 18:06:54 +08:00
- ./data/coordinator:/data
restart: always
worker1:
2019-06-16 16:24:14 +08:00
image: vimagick/presto
2018-08-21 18:06:54 +08:00
ports:
- "8081:8080"
volumes:
2019-06-16 16:24:14 +08:00
- ./conf/worker1:/opt/presto/etc
2018-08-21 18:06:54 +08:00
- ./data/worker1:/data
links:
- coordinator
restart: always