We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2d70e8 commit aacf1dbCopy full SHA for aacf1db
compose.yaml
@@ -11,6 +11,8 @@ services:
11
- S3_ACCESS_KEY=minioadmin
12
- S3_SECRET_ACCESS_KEY=minioadmin
13
- S3_BUCKET=mybucket
14
+ - BMQ_REDIS_HOST=redis
15
+ - BMQ_REDIS_PORT=6379
16
volumes:
17
- ./:/opt/app-root/src
18
ports:
@@ -91,7 +93,7 @@ services:
91
93
entrypoint: >
92
94
/bin/sh -c "
95
set -e;
- until (mc alias set local http://minio:9000 ${MINIO_ROOT_USER} ${MINIO_ROOT_PASSWORD}); do
96
+ until (mc alias set local http://minio:9000 minioadmin minioadmin); do
97
echo 'Waiting for MinIO...'; sleep 10;
98
done;
99
mc mb --ignore-existing local/mybucket;
0 commit comments