File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -85,12 +85,29 @@ services:
8585 - AWS_REGION=us-east-1
8686 entrypoint : >
8787 /bin/sh -c "
88- until (/usr/bin/mc config host add minio http://minio:9000 admin password) do echo '...waiting...' && sleep 1; done;
88+ until (/usr/bin/mc alias set minio http://minio:9000 admin password) do echo '...waiting...' && sleep 1; done;
8989 /usr/bin/mc rm -r --force minio/warehouse;
9090 /usr/bin/mc mb minio/warehouse;
9191 /usr/bin/mc policy set public minio/warehouse;
9292 tail -f /dev/null
9393 "
94+ clickhouse :
95+ image : clickhouse/clickhouse-server
96+ container_name : clickhouse
97+ networks :
98+ iceberg_net :
99+ ports :
100+ - 8123:8123
101+ - 9002:9000
102+ trino :
103+ image : trinodb/trino
104+ container_name : trino
105+ networks :
106+ iceberg_net :
107+ environment :
108+ - CATALOG_MANAGEMENT=dynamic
109+ ports :
110+ - 8088:8080
94111
95112networks :
96113 iceberg_net :
You can’t perform that action at this time.
0 commit comments