Skip to content

Commit

Permalink
Updates Minio port from 9000 to 9090
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsMurumba committed Nov 20, 2024
1 parent 7d3386b commit 7e6b918
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion datalake/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ services:
mode: host

- target: 9090
published: 9000
published: 9090
mode: host
6 changes: 3 additions & 3 deletions datalake/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ services:
minio-01:
image: ${MINIO_IMAGE}
entrypoint: sh
command: -c 'mkdir -p /data1/loki /data2/loki && minio server --console-address ":9001" http://minio-0{1...${NUM_MINIO_SERVERS}}/data{1...2}'
command: c 'mkdir -p /data1/loki /data2/loki && minio server --console-address ":9001" --address ":9090" http://minio-0{1...${NUM_MINIO_SERVERS}}/data{1...2}'
environment:
MINIO_ROOT_USER: ${MO_SECURITY_ADMIN_USER}
MINIO_ROOT_PASSWORD: ${MO_SECURITY_ADMIN_PASSWORD}
MINIO_BROWSER_REDIRECT_URL: ${MINIO_BROWSER_REDIRECT_URL}
MINIO_SERVER_URL: http://localhost:9000
MINIO_SERVER_URL: ${MINIO_SERVER_URL:-http://localhost:9090}
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:9000/minio/health/live" ]
test: [ "CMD", "curl", "-f", "http://localhost:9090/minio/health/live" ]
interval: 30s
timeout: 20s
retries: 3
Expand Down
3 changes: 2 additions & 1 deletion datalake/package-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"MINIO_02_PLACEMENT": "minio-02",
"MINIO_03_PLACEMENT": "minio-03",
"MINIO_04_PLACEMENT": "minio-04",
"MINIO_IMAGE": "minio/minio:RELEASE.2024-10-13T13-34-11Z.fips"
"MINIO_IMAGE": "minio/minio:RELEASE.2024-10-13T13-34-11Z.fips",
"MINIO_SERVER_URL": "http://localhost:9000"
}
}

0 comments on commit 7e6b918

Please sign in to comment.