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

12 lines
279 B
YAML
Raw Normal View History

2021-11-26 09:50:32 +02:00
version: "3.8"
services:
trino:
image: trinodb/trino
2021-11-26 10:14:37 +02:00
command: ["/usr/lib/trino/bin/launcher", "run", "--etc-dir", "etc", "--data-dir", "data"]
2021-11-26 09:50:32 +02:00
ports:
- "8080:8080"
volumes:
2021-11-26 10:14:37 +02:00
- ./data:/opt/trino
working_dir: /opt/trino
2021-11-26 09:50:32 +02:00
restart: unless-stopped