Skip to content

Commit

Permalink
Change minio ports from 500X to 501X (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
AetherUnbound authored Jan 27, 2022
1 parent cadc9d3 commit a8df91a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ and some networking setup so that they can communicate. Note:
The various services can be accessed using these links:

- Airflow: `localhost:9090` (The default username and password are both `airflow`.)
- Minio Console: `localhost:5001` (The default username and password are `test_key` and `test_secret`)
- Minio Console: `localhost:5011` (The default username and password are `test_key` and `test_secret`)
- Postgres: `localhost:5434` (using a database connector)

At this stage, you can run the tests via:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ services:
s3:
image: minio/minio:latest
ports:
- "5000:5000"
- "5001:5001"
- "5010:5000"
- "5011:5001"
env_file:
- .env
environment:
Expand All @@ -41,7 +41,7 @@ services:
volumes:
- minio:/data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/minio/health/live"]
test: ["CMD", "curl", "-f", "http://localhost:5010/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3
Expand Down

0 comments on commit a8df91a

Please sign in to comment.