{"id":21898147,"url":"https://github.com/cn-docker/aws-cli","last_synced_at":"2026-05-29T03:01:35.079Z","repository":{"id":38297617,"uuid":"221507558","full_name":"cn-docker/aws-cli","owner":"cn-docker","description":"AWS Cli Docker Image","archived":false,"fork":false,"pushed_at":"2026-05-22T22:57:17.000Z","size":497,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-23T00:27:33.480Z","etag":null,"topics":["aws","aws-cli","docker-image"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/cnservices/aws-cli/","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cn-docker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":null,"patreon":"jnonino","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2019-11-13T16:46:11.000Z","updated_at":"2026-05-05T07:44:19.000Z","dependencies_parsed_at":"2024-02-22T10:29:01.100Z","dependency_job_id":"c8ba0d41-5b83-4e85-989c-a9a37de8ae8f","html_url":"https://github.com/cn-docker/aws-cli","commit_stats":null,"previous_names":[],"tags_count":481,"template":false,"template_full_name":null,"purl":"pkg:github/cn-docker/aws-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cn-docker%2Faws-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cn-docker%2Faws-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cn-docker%2Faws-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cn-docker%2Faws-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cn-docker","download_url":"https://codeload.github.com/cn-docker/aws-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cn-docker%2Faws-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33634611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["aws","aws-cli","docker-image"],"created_at":"2024-11-28T14:24:07.875Z","updated_at":"2026-05-29T03:01:35.028Z","avatar_url":"https://github.com/cn-docker.png","language":"Dockerfile","funding_links":["https://patreon.com/jnonino"],"categories":[],"sub_categories":[],"readme":"# AWS Cli Docker Image \n\n[![](https://img.shields.io/docker/pulls/cnservices/aws-cli)](https://hub.docker.com/r/cnservices/aws-cli/)\n[![](hhttps://img.shields.io/docker/build/cnservices/aws-cli)](https://hub.docker.com/r/cnservices/aws-cli/)\n[![](https://img.shields.io/docker/automated/cnservices/aws-cli)](https://hub.docker.com/r/cnservices/aws-cli/)\n[![](https://img.shields.io/docker/stars/cnservices/aws-cli)](https://hub.docker.com/r/cnservices/aws-cli/)\n[![](https://img.shields.io/github/license/cn-docker/aws-cli)](https://github.com/cn-docker/aws-cli)\n[![](https://img.shields.io/github/issues/cn-docker/aws-cli)](https://github.com/cn-docker/aws-cli)\n[![](https://img.shields.io/github/issues-closed/cn-docker/aws-cli)](https://github.com/cn-docker/aws-cli)\n[![](https://img.shields.io/github/languages/code-size/cn-docker/aws-cli)](https://github.com/cn-docker/aws-cli)\n[![](https://img.shields.io/github/repo-size/cn-docker/aws-cli)](https://github.com/cn-docker/aws-cli)\n\nImage containing the AWS Cli executable.\n\n# Usage\n\nThe image is ready to execute AWS Cli commands like:\n\n        docker run cnservices/aws-cli \u003cCOMMAND\u003e\n\n## To provide AWS credentials you have two alternatives:\n\n### Using environment variables\n\nYou can use environment the variables to authenticate the AWS Cli.\n\n        docker run --env AWS_ACCESS_KEY_ID=\u003cYOUR_ACCESS_KEY\u003e --env AWS_SECRET_ACCESS_KEY=\u003cYOUR_SECRET_KEY\u003e cnservices/aws-cli \u003cCOMMAND\u003e\n\nWhere:\n- AWS_ACCESS_KEY_ID: Specifies an AWS access key associated with an IAM user or role.\n- AWS_SECRET_ACCESS_KEY: Specifies the secret key associated with the access key. This is essentially the \"password\" for the access key.\n\n### Using AWS profiles\n\nYou can use your AWS profiles to authenticate the AWS Cli.\n\n        docker run --volume ~/.aws/:/root/.aws/ cnservices/aws-cli \u003cCOMMAND\u003e\n\n## Get into the container\n\nTo access the container you need to override the entry point:\n\n        docker run -ti --entrypoint sh cnservices/aws-cli\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcn-docker%2Faws-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcn-docker%2Faws-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcn-docker%2Faws-cli/lists"}