We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3985bdb commit af164e3Copy full SHA for af164e3
2 files changed
dev/docker-compose-integration.yml
@@ -54,6 +54,21 @@ services:
54
- CATALOG_IO__IMPL=org.apache.iceberg.aws.s3.S3FileIO
55
- CATALOG_S3_ENDPOINT=http://minio:9000
56
- CATALOG_JDBC_STRICT__MODE=true
57
+
58
+ trino:
59
+ image: trinodb/trino:476
60
+ container_name: pyiceberg-trino
61
+ networks:
62
+ iceberg_net:
63
+ ports:
64
+ - 8082:8080
65
+ environment:
66
+ - CATALOG_MANAGEMENT=dynamic
67
+ depends_on:
68
+ - rest
69
+ - hive
70
+ volumes:
71
+ - ./trino/catalog:/etc/trino/catalog
72
minio:
73
image: minio/minio
74
container_name: pyiceberg-minio
dev/docker-compose-trino.yml
@@ -15,7 +15,7 @@ services:
15
16
17
trino:
18
- image: trinodb/trino
19
container_name: pyiceberg-trino
20
networks:
21
iceberg_net:
0 commit comments