https://github.com/mathisve/aiosre
All In One SRE Docker Container
https://github.com/mathisve/aiosre
aws docker hacktoberfest kubernetes sre
Last synced: 27 days ago
JSON representation
All In One SRE Docker Container
- Host: GitHub
- URL: https://github.com/mathisve/aiosre
- Owner: mathisve
- License: gpl-3.0
- Created: 2021-06-29T21:53:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-25T19:56:07.000Z (about 1 year ago)
- Last Synced: 2025-04-23T07:15:06.215Z (11 months ago)
- Topics: aws, docker, hacktoberfest, kubernetes, sre
- Language: Shell
- Homepage: https://hub.docker.com/r/mathisve/aiosre
- Size: 49.8 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/mathisve/aiosre/actions/workflows/build-docker.yaml)
[](https://github.com/mathisve/aiosre/actions/workflows/publish-docker-hub.yaml)
[](https://github.com/mathisve/aiosre/actions/workflows/publish-ghcr.yaml)
# aiosre
## All In One SRE Docker Container.
Now for **amd64** and **arm64**!
For all my SRE/Kubernetes/AWS needs, neatly packaged in a Docker container!
### Comes with:
- aws-cli
- terraform
- kubectl
- helm
- git
- ...
## build:
```bash
docker build -t aiosre .
```
## run:
```bash
docker run -it mathisve/aiosre
```
or
```bash
docker run -it ghcr.io/mathisve/aiosre
```
## with AWS Credentials
```bash
docker run -it \
-v "$HOME"/.aws:/root/.aws \
mathisve/aiosre
```
## with kubeconfig
```bash
docker run -it \
-v "$HOME"/.kube:/root/.kube \
mathisve/aiosre
```
## with AWS Credentials and kubeconfig
```bash
docker run -it \
-v "$HOME"/.aws:/root/.aws \
-v "$HOME"/.kube:/root/.kube \
mathisve/aiosre
```