1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/trino/docker-compose.yml
2021-11-26 16:14:37 +08:00

12 lines
279 B
YAML

version: "3.8"
services:
trino:
image: trinodb/trino
command: ["/usr/lib/trino/bin/launcher", "run", "--etc-dir", "etc", "--data-dir", "data"]
ports:
- "8080:8080"
volumes:
- ./data:/opt/trino
working_dir: /opt/trino
restart: unless-stopped