mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
12 lines
279 B
YAML
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
|