{"id":20980708,"url":"https://github.com/statful/docker-aws-cli-helm","last_synced_at":"2026-02-13T06:32:17.009Z","repository":{"id":72508489,"uuid":"234208718","full_name":"statful/docker-aws-cli-helm","owner":"statful","description":null,"archived":false,"fork":false,"pushed_at":"2020-07-27T13:24:47.000Z","size":27,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-13T10:17:34.493Z","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":"2020-01-16T01:32:17.000Z","updated_at":"2020-07-27T13:24:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"e9af3514-a374-407e-b62c-8f9a4901e038","html_url":"https://github.com/statful/docker-aws-cli-helm","commit_stats":null,"previous_names":[],"tags_count":91,"template":false,"template_full_name":null,"purl":"pkg:github/statful/docker-aws-cli-helm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli-helm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli-helm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli-helm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli-helm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/statful","download_url":"https://codeload.github.com/statful/docker-aws-cli-helm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/statful%2Fdocker-aws-cli-helm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274903934,"owners_count":25371233,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-12T02:00:09.324Z","response_time":60,"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":[],"created_at":"2024-11-19T05:29:46.321Z","updated_at":"2026-02-13T06:32:11.959Z","avatar_url":"https://github.com/statful.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# awscli-helm\n\n# What is awscli?\n\n\u003e Awscli is the Amazon web services command line interface.\n\n[Overview of awscli](https://docs.aws.amazon.com/cli/index.html)\n\n# What is Helm?\n\n\u003e Helm is the package manager for kubernetes.\n\n[Overview of helm](https://helm.sh/docs/)\n\n# TL;DR;\n\n```bash\n$ docker run -ti --rm statful/awscli-helm\n```\n\n```bash\n$ docker run -ti -e 'AWS_ACCESS_KEY_ID=********************' -e 'AWS_SECRET_ACCESS_KEY=****************************************' -v '/Users/statful/.kube:/root/.kube' --rm statful/awscli-helm helm list\n```\n\n```bash\n$ docker run -ti -v '/Users/statful/.aws:/root/.aws' -v '/Users/statful/.kube:/root/.kube' --rm statful/awscli-helm helm listt\n```\n\n\n# Supported tags and respective `Dockerfile` links\n\n* [`aws-1.16-helm-2.14`, `latest` (Dockerfile)](https://github.com/statful/awscli-helm/blob/Dockerfile)\n\nSubscribe to project updates by watching the [statful/awscli-helm GitHub repo](https://github.com/statful/awscli-helm).\n\n# Get this image\n\nThe recommended way to get the Statful helm Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/statful/helm).\n\n```bash\n$ docker pull statful/awscli-helm: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/awscli-helm/tags/) in the Docker Hub Registry.\n\n```bash\n$ docker pull statful/awscli-helm:[TAG]\n```\n\nIf you wish, you can also build the image yourself.\n\n```bash\n$ docker build -t statful/awscli-helm:latest 'https://github.com/statful/awscli-helm.git#master'\n```\n\n# Configuration\n\n## Running commands\n\nTo run commands inside this container you can use `docker run`, for example to execute `helm --version` you can follow the example below:\n\n```bash\n$ docker run --rm --name helm statful/awscli-helm:latest -- helm version\n```\n\nConsult the [helm Reference Documentation](https://helm.sh/docs/) or 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\n$ docker run -ti -e 'AWS_ACCESS_KEY_ID=********************' -e 'AWS_SECRET_ACCESS_KEY=****************************************' --rm statful/awscli-helm aws s3 ls\n```\n\n### AWS directory\n\n```bash\ndocker run -ti -v '/Users/statful/.aws:/root/.aws' --rm statful/awscli-helm aws s3\n```\n\n## helm credentials\n\nhelm credentials can be passed by mounting a volume with the kubeconfig under `/root/.kube`.\n\n### helm directory\n\n```bash\ndocker run -ti -v '/Users/statful/.kube:/root/.kube' --rm statful/awscli-helm helm get pods\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/awscli-helm/issues), or submit a [pull request](https://github.com/statful/awscli-helm/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/awscli-helm/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-helm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstatful%2Fdocker-aws-cli-helm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstatful%2Fdocker-aws-cli-helm/lists"}