Skip to content
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

[Backport 2.x] Upgrade minio image version #3867

Merged
merged 1 commit into from
Jul 13, 2022
Merged
Show file tree
Hide file tree
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 test/fixtures/minio-fixture/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM minio/minio:RELEASE.2019-01-23T23-18-58Z
FROM minio/minio:RELEASE.2022-06-25T15-50-16Z

ARG bucket
ARG accessKey
ARG secretKey

RUN mkdir -p /minio/data/${bucket}
ENV MINIO_ACCESS_KEY=${accessKey}
ENV MINIO_SECRET_KEY=${secretKey}
ENV MINIO_ROOT_USER=${accessKey}
ENV MINIO_ROOT_PASSWORD=${secretKey}
36 changes: 24 additions & 12 deletions test/fixtures/minio-fixture/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ services:
accessKey: "access_key"
secretKey: "secret_key"
dockerfile: Dockerfile
ulimits:
nofile:
hard: 4096
soft: 4096
ports:
- "9000"
command: ["server", "/minio/data"]
command: ["server", "--console-address", ":9001", "/minio/data"]
minio-fixture-other:
build:
context: .
Expand All @@ -19,17 +23,25 @@ services:
accessKey: "access_key"
secretKey: "secret_key"
dockerfile: Dockerfile
ulimits:
nofile:
hard: 4096
soft: 4096
ports:
- "9000"
command: ["server", "/minio/data"]
command: ["server", "--console-address", ":9001", "/minio/data"]
minio-fixture-for-snapshot-tool:
build:
context: .
args:
bucket: "bucket"
accessKey: "sn_tool_access_key"
secretKey: "sn_tool_secret_key"
dockerfile: Dockerfile
ports:
- "9000"
command: ["server", "/minio/data"]
build:
context: .
args:
bucket: "bucket"
accessKey: "sn_tool_access_key"
secretKey: "sn_tool_secret_key"
dockerfile: Dockerfile
ulimits:
nofile:
hard: 4096
soft: 4096
ports:
- "9000"
command: ["server", "--console-address", ":9001", "/minio/data"]