1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/trino/docker-compose.yml
2021-11-29 15:23:49 +08:00

13 lines
320 B
YAML

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