Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neilkuan/kops-amd64-docker
https://github.com/neilkuan/kops-amd64-docker
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/neilkuan/kops-amd64-docker
- Owner: neilkuan
- Created: 2023-07-19T06:03:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-19T06:12:24.000Z (over 1 year ago)
- Last Synced: 2024-10-07T10:10:51.512Z (30 days ago)
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kops-amd64-docker
### To use
```bash
docker pull ghcr.io/neilkuan/kops-amd64-cli:latestexample
docker run -it --rm -v ~/.aws:/root/.aws -e AWS_PROFILE=$AWS_PROFILE_NAME ghcr.io/neilkuan/kops-amd64-cli:latest kops
```### alias example
```bash
example:
alias kops='docker run -it --rm -v ~/.aws:/root/.aws -e AWS_PROFILE=$AWS_PROFILE_NAME ghcr.io/neilkuan/kops-amd64-cli:latest kops'
kops get
```### To build by yourself
```bash
git clone https://github.com/neilkuan/kops-amd64-docker.git
cd kops-amd64-dockerdocker build -t local-kops .
docker run -it --rm -v ~/.aws:/root/.aws -e AWS_PROFILE=$AWS_PROFILE_NAME ghcr.io/neilkuan/kops-amd64-cli:latest kops
```