Skip to content

Commit

Permalink
Fix Docker Compose ports (#9046)
Browse files Browse the repository at this point in the history
Port 9001 was used twice

... and fix a config mistake
  • Loading branch information
snazy authored Jul 9, 2024
1 parent 28c420c commit c1778fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/catalog-auth-s3-otel-jdbc/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ services:
image: quay.io/minio/minio:RELEASE.2024-07-04T14-25-45Z
ports:
# API port
- "9001:9000"
- "9002:9000"
# MinIO UI, browse to http://localhost:9092 to view the MinIO Object Browser
- "9092:9090"
environment:
Expand Down
4 changes: 2 additions & 2 deletions docker/catalog-auth-s3-otel/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ services:
- nessie.catalog.default-warehouse=warehouse
- nessie.catalog.warehouses.warehouse.location=s3://demobucket/
- nessie.catalog.service.s3.default-options.region=us-east-1
- nessie.catalog.service.s3.path-style-access=true
- nessie.catalog.service.s3.default-options.path-style-access=true
- nessie.catalog.service.s3.default-options.access-key.name=minioadmin
- nessie.catalog.service.s3.default-options.access-key.secret=minioadmin
# MinIO endpoint for Nessie server
Expand Down Expand Up @@ -172,7 +172,7 @@ services:
image: quay.io/minio/minio:RELEASE.2024-07-04T14-25-45Z
ports:
# API port
- "9001:9000"
- "9002:9000"
# MinIO UI, browse to http://localhost:9092 to view the MinIO Object Browser
- "9092:9090"
environment:
Expand Down

0 comments on commit c1778fc

Please sign in to comment.