We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2a24ef commit a50d689Copy full SHA for a50d689
2 files changed
test/architecture/data/objectstorage/entrypoint.sh
test/architecture/docker-compose.core.yml
@@ -56,9 +56,8 @@ services:
56
MINIO_ROOT_USER: minioclient
57
MINIO_ROOT_PASSWORD: supersecure
58
volumes:
59
- # Mount a "bucket" with some CSV files into our object storage
60
- # https://github.com/minio/minio/issues/8949
61
- # As always, Minio is very opinionated and doesn't allow "cross-device mounts" even in dev
62
- # so we copy this in on startup.
63
- - ./data/objectstorage:/objectstorage
64
- entrypoint: /objectstorage/entrypoint.sh
+ - ./data/objectstorage:/data
+ command:
+ - minio
+ - server
+ - /data
0 commit comments