{"id":40450674,"url":"https://github.com/rtsp/docker-aws-cli","last_synced_at":"2026-01-20T17:17:10.250Z","repository":{"id":38322223,"uuid":"406831183","full_name":"rtsp/docker-aws-cli","owner":"rtsp","description":"Debian Docker image with AWC CLI preinstalled","archived":false,"fork":false,"pushed_at":"2025-11-18T02:03:35.000Z","size":388,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-18T04:07:07.344Z","etag":null,"topics":["aws","aws-cli","docker","docker-image"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/rtsp/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/rtsp.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-09-15T15:46:37.000Z","updated_at":"2025-11-18T02:03:31.000Z","dependencies_parsed_at":"2023-10-12T12:48:11.123Z","dependency_job_id":"cd8910d5-fa74-4794-864a-4531195bd95f","html_url":"https://github.com/rtsp/docker-aws-cli","commit_stats":null,"previous_names":[],"tags_count":129,"template":false,"template_full_name":null,"purl":"pkg:github/rtsp/docker-aws-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-aws-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-aws-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-aws-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-aws-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rtsp","download_url":"https://codeload.github.com/rtsp/docker-aws-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtsp%2Fdocker-aws-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"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":["aws","aws-cli","docker","docker-image"],"created_at":"2026-01-20T17:17:09.485Z","updated_at":"2026-01-20T17:17:10.205Z","avatar_url":"https://github.com/rtsp.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RTSP AWS CLI Docker Image\n\nDebian with [AWS CLI](https://github.com/aws/aws-cli/tree/v2) included.\n\n\n## `aws` Usage\n\nFor the `aws` command usage, please refer to the following documents.\n\n- [AWS CLI Documentation](https://docs.aws.amazon.com/cli/)\n- [AWS CLI v2 Command Reference](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/index.html)\n  - [`aws ec2` Reference](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/index.html)\n  - [`aws s3` Reference](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/index.html)\n  - [`aws iam` Reference](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/iam/index.html)\n  - [`aws ecs` Reference](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ecs/index.html)\n  - [`aws eks` Reference](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/eks/index.html)\n\n\n## Usage\n\nIn order to use image from GitHub Container Registry instead of Docker Hub, you can replace `rtsp/aws-cli` with `ghcr.io/rtsp/docker-aws-cli` anywhere in the instruction below.\n\n### Pull Image\n\n```ShellSession\ndocker pull rtsp/aws-cli\n```\n\n### Interactive Mode\n\n```ShellSession\ndocker run --rm -it rtsp/aws-cli bash\n```\n\n```ShellSession\ndocker run --rm -it \\\n  -e AWS_ACCESS_KEY_ID=AKIAXXXX \\\n  -e AWS_SECRET_ACCESS_KEY=XXXX \\\n  -e AWS_DEFAULT_REGION=ap-southeast-1 \\\n  rtsp/aws-cli bash\n```\n\n### Run a Specific Command\n\n```ShellSession\ndocker run --rm \\\n  -e AWS_ACCESS_KEY_ID=AKIAXXXX \\\n  -e AWS_SECRET_ACCESS_KEY=XXXX \\\n  -e AWS_DEFAULT_REGION=ap-southeast-1 \\\n  rtsp/aws-cli aws s3 ls\n```\n\n### Run as Daemon\n\nWARNING: This will leave your keys in the running container.\n\n```ShellSession\ndocker run -d --name aws-cli \\\n  -e AWS_ACCESS_KEY_ID=AKIAXXXX \\\n  -e AWS_SECRET_ACCESS_KEY=XXXX \\\n  -e AWS_DEFAULT_REGION=ap-southeast-1 \\\n  rtsp/aws-cli\n```\n\n```ShellSession\ndocker exec aws-cli aws s3 ls\n\ndocker exec -it aws-cli bash\n```\n\n### Run as Kubernetes Pod\n\nWARNING: This will leave your keys in the running pod.\n\n```yaml\n---\napiVersion: v1\nkind: Pod\nmetadata:\n  name: aws-cli\nspec:\n  containers:\n  - name: aws-cli\n    image: rtsp/aws-cli:latest\n    env:\n    - name: AWS_ACCESS_KEY_ID\n      value: AKIAXXXX\n    - name: AWS_SECRET_ACCESS_KEY\n      value: XXXX\n    - name: AWS_DEFAULT_REGION\n      value: ap-southeast-1\n```\n\n```ShellSession\nkubectl exec aws-cli -- aws s3 ls\n\nkubectl exec -it aws-cli -- bash\n```\n\n### Run as Kubernetes Deployment\n\nWARNING: This will leave your keys in the running pod.\n\n```yaml\n---\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n  name: aws-cli\nspec:\n  replicas: 1\n  selector:\n    matchLabels:\n      name: aws-cli\n  template:\n    metadata:\n      labels:\n        name: aws-cli\n    spec:\n      containers:\n        - name: aws-cli\n          image: rtsp/aws-cli:latest\n          imagePullPolicy: Always\n          env:\n          - name: AWS_ACCESS_KEY_ID\n            value: AKIAXXXX\n          - name: AWS_SECRET_ACCESS_KEY\n            value: XXXX\n          - name: AWS_DEFAULT_REGION\n            value: ap-southeast-1\n```\n\n```ShellSession\nkubectl exec deployment/aws-cli -- aws s3 ls\n\nkubectl exec -it deployment/aws-cli -- bash\n```\n\n\n## Links\n\n### Packages\n\n- Docker Hub: [rtsp/aws-cli](https://hub.docker.com/r/rtsp/aws-cli/)\n- GitHub: [ghcr.io/rtsp/docker-aws-cli](https://github.com/rtsp/docker-aws-cli/pkgs/container/docker-aws-cli)\n\n### Source Code\n\n- [rtsp/docker-aws-cli](https://github.com/rtsp/docker-aws-cli)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtsp%2Fdocker-aws-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtsp%2Fdocker-aws-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtsp%2Fdocker-aws-cli/lists"}