mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-24 17:00:37 +00:00
* fix: fix EntityTooSmall issue * chore(ci): add minio to coverage * tests: add test for parquet writer * chore: move tests to `common-datasource` crate
19 lines
385 B
YAML
19 lines
385 B
YAML
version: '3.8'
|
|
services:
|
|
minio:
|
|
image: bitnami/minio:2024
|
|
ports:
|
|
- '9000:9000'
|
|
- '9001:9001'
|
|
environment:
|
|
- MINIO_ROOT_USER=superpower_ci_user
|
|
- MINIO_ROOT_PASSWORD=superpower_password
|
|
- MINIO_DEFAULT_BUCKETS=greptime
|
|
- BITNAMI_DEBUG=true
|
|
volumes:
|
|
- 'minio_data:/bitnami/minio/data'
|
|
|
|
volumes:
|
|
minio_data:
|
|
driver: local
|