mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-10 11:10:27 +02:00
20 lines
368 B
YAML
20 lines
368 B
YAML
coordinator:
|
|
image: vimagick/presto
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./conf/coordinator:/opt/presto/etc
|
|
- ./data/coordinator:/var/lib/presto
|
|
restart: always
|
|
|
|
worker1:
|
|
image: vimagick/presto
|
|
ports:
|
|
- "8081:8080"
|
|
volumes:
|
|
- ./conf/worker1:/opt/presto/etc
|
|
- ./data/worker1:/var/lib/presto
|
|
links:
|
|
- coordinator
|
|
restart: always
|