Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Netdata | 63,274 | 19 hours ago | 321 | gpl-3.0 | C | |||||
Real-time performance monitoring, done right! https://www.netdata.cloud | ||||||||||
Devops Exercises | 43,460 | 5 days ago | 14 | other | Python | |||||
Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions | ||||||||||
Traefik | 43,273 | 18 | a day ago | 160 | September 16, 2022 | 621 | mit | Go | ||
The Cloud Native Application Proxy | ||||||||||
Kong | 34,961 | 14 hours ago | 235 | apache-2.0 | Lua | |||||
🦍 The Cloud-Native API Gateway | ||||||||||
Awesome Cheatsheets | 33,674 | 3 days ago | 83 | mit | JavaScript | |||||
👩💻👨💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file. | ||||||||||
Portainer | 25,677 | 1 | 2 days ago | 78 | April 21, 2021 | 1,128 | zlib | Go | ||
Making Docker and Kubernetes management easy. | ||||||||||
Dokku | 24,653 | 2 | 19 hours ago | 77 | April 22, 2021 | 40 | mit | Shell | ||
A docker-powered PaaS that helps you build and manage the lifecycle of applications | ||||||||||
Faas | 23,110 | 9 | 3 days ago | 31 | April 12, 2021 | 30 | mit | Go | ||
OpenFaaS - Serverless Functions Made Simple | ||||||||||
Docker_practice | 22,409 | 10 days ago | 9 | December 01, 2021 | 7 | Go | ||||
Learn and understand Docker&Container technologies, with real DevOps practice! | ||||||||||
Rancher | 21,099 | 20 | 9 hours ago | 207 | April 25, 2021 | 2,471 | apache-2.0 | Go | ||
Complete container management platform |
This GitHub repo and Docker container contain the tools I use in my terminal-centric workspace. I use it to get a workspace quickly and to store all my custom installation information (latest Go, borderless TMUX, etc.)
By default, this image will interactively prompt for user creation information the first time it is run (with defaults). This makes it ideal for matching the exact user account I use at work and on different projects. Sometimes I bind-mount volumes and share the host network. Other times I use it as a sandbox disconnected from everything else.
To clone and work with the source code:
git clone --recursive [email protected]:rwxrob/workspace.git
To just sample run the image and remove when done (accept the defaults):
docker run -it --rm rwxrob/workspace
Note for any docker
work you probably want to -v /var/run/docker.sock:/var/run/docker.sock
, which will share the docker
instance running on the host.
Some of the scripts and content in this repo can be used to install stuff outside of a workspace (on a host system).
To install latest Go binary (after having done build go
):
ln -sf "$PWD/goroot" /usr/local/go
To add the Go utilities you might want to copy them to /usr/local/bin
:
cp ./go/bin/* /usr/local/bin