Skip to content

Commit

Permalink
Update docker-compose-sharded.yaml
Browse files Browse the repository at this point in the history
Fix minio port number, as we start pmm-sever on 9000 already in pipelines
  • Loading branch information
saikumar-vs authored Nov 18, 2024
1 parent 92a2b96 commit 75ab704
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pmm_psmdb-pbm_setup/docker-compose-sharded.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ services:
image: minio/minio
container_name: minio
ports:
- "9000:9000"
- "9001:9001"
networks:
- test-network
volumes:
Expand All @@ -247,7 +247,7 @@ services:
depends_on:
- minio
entrypoint: >
/bin/sh -c " sleep 5; /usr/bin/mc config host add myminio http://minio:9000 minio1234 minio1234; /usr/bin/mc mb myminio/bcp; exit 0; "
/bin/sh -c " sleep 5; /usr/bin/mc config host add myminio http://minio:9001 minio1234 minio1234; /usr/bin/mc mb myminio/bcp; exit 0; "
pmm-server:
image: ${PMM_IMAGE:-perconalab/pmm-server:3-dev-latest}
Expand Down

0 comments on commit 75ab704

Please sign in to comment.