Skip to content

Commit

Permalink
change minio server port to 8000
Browse files Browse the repository at this point in the history
  • Loading branch information
KonstantAnxiety committed Dec 25, 2024
1 parent d9a83b2 commit 9c692f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def connectors_settings(s3_settings):
ACCESS_KEY_ID=s3_settings.ACCESS_KEY_ID,
SECRET_ACCESS_KEY=s3_settings.SECRET_ACCESS_KEY,
BUCKET="bi-file-uploader",
S3_ENDPOINT="http://s3-storage:9000",
S3_ENDPOINT="http://s3-storage:8000",
),
)

Expand Down
4 changes: 2 additions & 2 deletions lib/dl_file_uploader_api_lib/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ services:
MINIO_ROOT_USER: accessKey1
MINIO_ROOT_PASSWORD: verySecretKey1
MINIO_DOMAIN: local
command: server /export
command: server --address ":8000" /export
ports:
- "51420:9000"
- 51420:8000

init-db:
depends_on:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/bash

echo 'Waiting for S3 to initialize...'
until curl -s s3-storage:9000 > /dev/null
until curl -s s3-storage:8000 > /dev/null
do
sleep 5
echo 'Waiting for S3 to initialize...'
Expand Down

0 comments on commit 9c692f9

Please sign in to comment.