1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/trino/docker-compose.yml

13 lines
320 B
YAML
Raw Normal View History

2021-11-26 07:50:32 +00:00
version: "3.8"
services:
trino:
image: trinodb/trino
2021-11-29 07:23:49 +00:00
command: ["bin/launcher", "run", "--etc-dir", "etc", "--data-dir", "data"]
2021-11-26 07:50:32 +00:00
ports:
- "8080:8080"
volumes:
2021-11-29 07:23:49 +00:00
- ./data/etc:/usr/lib/trino/etc
- ./data/data:/usr/lib/trino/data
working_dir: /usr/lib/trino
2021-11-26 07:50:32 +00:00
restart: unless-stopped