Skip to content

Commit fabeaa7

Browse files
authored
fix(ci): Fix the minio config (#444)
taken from apache/iceberg-python#2049 Looks like `mc config` is deprecated minio/mc#5206
1 parent 85f7008 commit fabeaa7

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

internal/recipe/docker-compose.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff 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

95112
networks:
96113
iceberg_net:

0 commit comments

Comments
 (0)