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

chore: upgrade MinIO #1175

Merged
merged 2 commits into from
Dec 18, 2024
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
1 change: 1 addition & 0 deletions .envs/.local/.minio
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
MINIO_ROOT_USER=mysagw-minio
MINIO_ROOT_PASSWORD=mysagw-minio123
MINIO_BROWSER=on
MINIO_CONSOLE_ADDRESS=":9001"
2 changes: 1 addition & 1 deletion api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pyexcel-xlsx = "^0.6.0"
pypdf = "^4.1.0"
requests = "^2.32.2"
reportlab = "^4.1.0"
setuptools = "^75.5.0" # needed fopr django-excel
setuptools = "75.5.0" # needed for django-excel. Pinned because of build errors. See https://github.com/adfinis/mySAGW/issues/1176

[tool.poetry.group.dev.dependencies]
django-extensions = "^3.2.3"
Expand Down
2 changes: 1 addition & 1 deletion compose.override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
minio:
env_file: ./.envs/.local/.minio
ports:
- "9000:9000"
- "9001:9001"

mc:
env_file: ./.envs/.local/.minio
Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ services:
image: ghcr.io/adfinis/mysagw/ember:0.2.0

minio:
image: minio/minio:RELEASE.2023-09-04T19-57-37Z
image: minio/minio:RELEASE.2024-12-13T22-19-12Z
volumes:
- minio_data_snsd:/data
command: server data
Expand Down
Loading