Skip to content

PBM replace deprecated mc config command #354

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pbm-functional/pytest/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
command: azurite-blob --blobHost 0.0.0.0 -d /dev/stdout

minio:
image: minio/minio:RELEASE.2025-04-22T22-12-26Z
image: minio/minio
container_name: minio
ports:
- "9000:9000"
Expand Down Expand Up @@ -57,13 +57,13 @@ services:

createbucket:
container_name: createbucket
image: minio/mc:RELEASE.2025-04-16T18-13-26Z
image: minio/mc
networks:
- test
depends_on:
- minio
entrypoint: >
/bin/sh -c " sleep 5; /usr/bin/mc config host add myminio http://minio:9000 minio1234 minio1234; /usr/bin/mc mb myminio/bcp; exit 0; "
/bin/sh -c " sleep 5; /usr/bin/mc alias set myminio http://minio:9000 minio1234 minio1234; /usr/bin/mc mb myminio/bcp; exit 0; "

pykmip:
image: pykmip/local
Expand Down
Loading