{"id":20980705,"url":"https://github.com/statful/docker-aws-cli","last_synced_at":"2026-04-01T20:42:54.236Z","repository":{"id":72508466,"uuid":"224572717","full_name":"statful/docker-aws-cli","owner":"statful","description":"Docker container with awscli and helm","archived":false,"fork":false,"pushed_at":"2020-07-27T12:56:03.000Z","size":37,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-13T10:17:29.765Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/statful.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-28T04:55:48.000Z","updated_at":"2020-07-27T12:56:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"23268b7c-aa41-4123-8f2f-9e0d42ecef7f","html_url":"https://github.com/statful/docker-aws-cli","commit_stats":null,"previous_names":[],"tags_count":118,"template":false,"template_full_name":null,"purl":"pkg:github/statful/docker-aws-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/statful","download_url":"https://codeload.github.com/statful/docker-aws-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T05:29:44.961Z","updated_at":"2026-04-01T20:42:54.206Z","avatar_url":"https://github.com/statful.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS CLI docker image\n\n# What is aws-cli/awscli?\n\n\u003e aws-cli/awscli is the Amazon web services command line interface.\n\n[Overview of aws-cli](https://docs.aws.amazon.com/cli/index.html)\n\n# TL;DR;\n\n```bash\ndocker run -ti --rm statful/aws-cli aws version\n```\n\n# Supported tags and respective `Dockerfile` links\n\nThe tags that match the following should be supported\n* X.Y.Z\n* X.Y\n\nwhere `X`, `Y` and `Z` correspond to major minor and patch numbers following a semantic versioning approach.\n\nSubscribe to project updates by watching the [statful/docker-aws-cli GitHub repo](https://github.com/statful/docker-aws-cli).\n\n# Get this image\n\nThe recommended way to get the Statful aws-cli Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/statful/aws-cli).\n\n```bash\ndocker pull statful/aws-cli:latest\n```\n\nTo use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/statful/aws-cli/tags/) in the Docker Hub Registry.\n\n```bash\ndocker pull statful/aws-cli:[TAG]\n```\n\nIf you wish, you can also build the image yourself.\n\n```bash\n# Building the latest image\ndocker build -t statful/aws-cli:latest 'https://github.com/statful/docker-aws-cli.git/tree/latest'\n\n# Building a specific tag, e.g., 1.16\ndocker build -t statful/aws-cli:1.16 'https://github.com/statful/docker-aws-cli.git/tree/1.16'\n```\n\n# Configuration\n\n## Running commands\n\nTo run commands inside this container you can use `docker run`, for example to execute `aws s3 ls` you can follow the example below:\n\n```bash\ndocker run --rm --name aws-cli statful/aws-cli:latest -- aws s3 ls\n```\n\nConsult the [AWS CLI Reference Documentation](https://docs.aws.amazon.com/cli/index.html) to find the completed list of commands available.\n\n## AWS Credentials\n\nAWS credentials can either be passed by environment variables, or by mounting a volume with aws credentials file under `/root/.aws`.\n\n### Environment variables\n\n```bash\ndocker run -ti -e 'AWS_ACCESS_KEY_ID=********************' -e 'AWS_SECRET_ACCESS_KEY=****************************************' --rm statful/aws-cli aws s3 ls\n```\n\n```bash\n# Using a credentials manager such as aws-vault or okta\naws-vault exec \u003cPROFILE\u003e -- docker run -ti -e 'AWS_ACCESS_KEY_ID=********************' -e 'AWS_SECRET_ACCESS_KEY=****************************************' --rm statful/aws-cli aws s3 ls\n```\n\n### AWS directory\n\n```bash\ndocker run -ti -v '/Users/bearengineer/.aws:/root/.aws' --rm statful/aws-cli aws s3\n```\n\n### AWS credentials manager, e.g., aws-vault\n\n\n# Contributing\n\nWe'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/statful/docker-aws-cli/issues), or submit a [pull request](https://github.com/statful/docker-aws-cli/pulls) with your contribution.\n\n# Issues\n\nIf you encountered a problem running this container, you can file an [issue](https://github.com/statful/docker-aws-cli/issues). For us to provide better support, be sure to include the following information in your issue:\n\n- Host OS and version\n- Docker version (`docker version`)\n- Output of `docker info`\n- Version of this container\n- The command you used to run the container, and any relevant output you saw (masking any sensitive information)\n\n# License\n\nCopyright (c) 2019 Statful. All rights reserved.\n\nThis work is licensed under the terms of the MIT license.  \nFor a copy, see \u003chttps://opensource.org/licenses/MIT\u003e.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstatful%2Fdocker-aws-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstatful%2Fdocker-aws-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstatful%2Fdocker-aws-cli/lists"}