We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello In my docker-compose.yml, I have:
... aws-cli: image: garland/aws-cli-docker environment: - AWS_ACCESS_KEY_ID= - AWS_SECRET_ACCESS_KEY= - AWS_DEFAULT_REGION=eu-west-1 links: - s3-service - sqs-service command: > sh -c "aws --endpoint-url=http://s3-service:4569 s3 mb s3://bucket1 && aws --endpoint-url=http://s3-service:4569 s3 mb s3://bucket2"
When I'm checking created buckets with: aws s3 ls s3:// got:
aws s3 ls s3://
s3-service
and then aws s3 ls s3://s3-service/
aws s3 ls s3://s3-service/
bucket1 bucket2
The text was updated successfully, but these errors were encountered:
Weird, it would seem you are using it correctly per these docs: https://docs.aws.amazon.com/cli/latest/reference/s3/mb.html
What did the command output say?
Sorry, something went wrong.
Closing this since there has been no response. Feel free to open it back up if there are any updates.
No branches or pull requests
Hello
In my docker-compose.yml, I have:
When I'm checking created buckets with:
aws s3 ls s3://
got:
and then
aws s3 ls s3://s3-service/
The text was updated successfully, but these errors were encountered: