Skip to content

Commit

Permalink
test(smoketest): expose storage API ports externally (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores authored Jan 11, 2024
1 parent 90cdf73 commit 6357e8e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions smoketest/compose/s3-cloudserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ services:
s3:
image: ${CLOUDSERVER_IMAGE:-docker.io/zenko/cloudserver:latest}
hostname: s3
ports:
- "8000:8000"
expose:
- "8000"
environment:
Expand Down
3 changes: 2 additions & 1 deletion smoketest/compose/s3-localstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ services:
s3:
image: ${LOCALSTACK_IMAGE:-docker.io/localstack/localstack:latest}
hostname: s3
ports:
- "4566:4566"
expose:
- "4566"
- "4577"
environment:
SERVICES: s3
START_WEB: 1
Expand Down
1 change: 1 addition & 0 deletions smoketest/compose/s3-minio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ services:
hostname: s3
ports:
- "9001:9001"
- "9000:9000"
expose:
- "9000"
- "9001"
Expand Down
2 changes: 2 additions & 0 deletions smoketest/compose/s3-seaweed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ services:
image: ${SEAWEEDFS_IMAGE:-docker.io/chrislusf/seaweedfs:latest}
command: server -s3
hostname: s3
ports:
- "8333:8333"
expose:
- "8333"
labels:
Expand Down

0 comments on commit 6357e8e

Please sign in to comment.