diff --git a/README.md b/README.md index edb604f6274..d31ec827efa 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/docker-compose.override.yml b/docker-compose.override.yml index 71cb240dfc9..a8da5057a1b 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -19,8 +19,8 @@ services: s3: image: minio/minio:latest ports: - - "5000:5000" - - "5001:5001" + - "5010:5000" + - "5011:5001" env_file: - .env environment: @@ -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