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