-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
75 lines (66 loc) · 1.45 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: '3'
services:
mariadb:
image: 'mariadb:10.11.2'
hostname: mariadb
ports:
- '3306:3306'
environment:
MYSQL_ROOT_PASSWORD: admin
MYSQL_USER: admin
MYSQL_PASSWORD: admin
MYSQL_DATABASE: metastore_db
networks:
- trino-network
restart: unless-stopped
hive-metastore:
image: 'custom-hive-metastore'
hostname: hive-metastore
ports:
- '9083:9083' # Metastore Thrift
volumes:
- ./conf/metastore-site.xml:/opt/apache-hive-metastore-3.0.0-bin/conf/metastore-site.xml:ro
environment:
METASTORE_DB_HOSTNAME: mariadb
depends_on:
- mariadb
networks:
- trino-network
restart: unless-stopped
trino:
image: trinodb/trino:410
hostname: trino_container
ports:
- 8080:8080
volumes:
- ./trino/catalog:/etc/trino/catalog
networks:
- trino-network
depends_on:
- minio
- hive-metastore
restart: unless-stopped
minio:
image: minio/minio:RELEASE.2023-08-31T15-31-16Z
ports:
- "9000:9000"
- "9001:9001"
volumes:
- ./minio-data:/data
environment:
MINIO_ACCESS_KEY: test
MINIO_SECRET_KEY: test12334567
command: server /data --console-address ":9001"
networks:
- trino-network
restart: unless-stopped
volumes:
trino:
driver: local
conf:
driver: local
minio-data:
driver: local
networks:
trino-network:
driver: bridge