All Projects → lukaszlach → Commando

lukaszlach / Commando

Licence: other
🐳 Container registry which provides you all the commands you need in a lightweight Alpine image. DevOps and SysOps best friend. https://command-not-found.com

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Commando

Sywac
🚫 🐭 Asynchronous, single package CLI framework for Node
Stars: ✭ 109 (-55.14%)
Mutual labels:  command
Cbox
convert any python function to unix-style command
Stars: ✭ 154 (-36.63%)
Mutual labels:  command
Webpack Command
[DEPRECATED] Lightweight, modular, and opinionated webpack CLI that provides a superior experience
Stars: ✭ 218 (-10.29%)
Mutual labels:  command
Dotfiles
Dotfiles
Stars: ✭ 117 (-51.85%)
Mutual labels:  command
Designpatterns
🔑Elements of Reusable Object-Oriented Software🔓is a software engineering book describing software design patterns. The book's authors are Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides with a foreword by Grady Booch.
Stars: ✭ 134 (-44.86%)
Mutual labels:  command
Pydesignpattern
Design Pattern that described by Python, This is the source code for the book of Everybody Know Design Patterns.
Stars: ✭ 174 (-28.4%)
Mutual labels:  command
Gql
Very simple CLI for many GraphQL schemas in the cloud. Provides autocompletion for GraphQL queries
Stars: ✭ 101 (-58.44%)
Mutual labels:  command
Serve
a static http server anywhere you need one.
Stars: ✭ 233 (-4.12%)
Mutual labels:  command
Hiboot
hiboot is a high performance web and cli application framework with dependency injection support
Stars: ✭ 150 (-38.27%)
Mutual labels:  command
Alder
A minimal implementation of the UNIX tree command with colors!
Stars: ✭ 183 (-24.69%)
Mutual labels:  command
Typin
Declarative framework for interactive CLI applications
Stars: ✭ 126 (-48.15%)
Mutual labels:  command
Simplecli
Command Line Interface Library for Arduino
Stars: ✭ 135 (-44.44%)
Mutual labels:  command
You Dont Need Gui
Stop relying on GUI; CLI **ROCKS**
Stars: ✭ 4,766 (+1861.32%)
Mutual labels:  command
Cmd Parser
一个非常简单好用的命令解析器,占用资源极少极少,采用哈希算法超快匹配命令!
Stars: ✭ 115 (-52.67%)
Mutual labels:  command
Neodoc
Beautiful, hand-crafted commandline interfaces for node.js
Stars: ✭ 221 (-9.05%)
Mutual labels:  command
Simple Console
Add an elegant command-line interface to any page
Stars: ✭ 107 (-55.97%)
Mutual labels:  command
Kommander Ios
A lightweight, pure-Swift library for manage the task execution in different threads. Through the definition a simple but powerful concept, Kommand.
Stars: ✭ 167 (-31.28%)
Mutual labels:  command
Xxexploiter
Tool to help exploit XXE vulnerabilities
Stars: ✭ 243 (+0%)
Mutual labels:  command
Jquery.terminal
jQuery Terminal Emulator - JavaScript library for creating web-based terminals with custom commands
Stars: ✭ 2,623 (+979.42%)
Mutual labels:  command
Discord.ts
🤖 Create your discord bot by using TypeScript and decorators!
Stars: ✭ 172 (-29.22%)
Mutual labels:  command

Commando

Version

Commando generates Docker images on-demand with all the commands you need and simply point them by name in the docker run command. Commando is SysOps and DevOps best friend.

Features

When running a Docker image you will enter the Bash shell by default and have the requested commands available.

Commando is deployed under cmd.cat and publicly available, you can freely use it but do not depend on it's stability in your projects as it is hosted on my private server with limited resources.

The image is based on Alpine and the builder does its best to reuse the existing layers when using multiple commands. This way both cmd.cat/envsubst/curl and cmd.cat/curl/envsubst are the same images, also cmd.cat/envsubst/tcpdump/curl adds only one extra layer.

Source: Linux PerfTools

# One command.
docker run -it cmd.cat/strace
docker run -it cmd.cat/ab

# Two...
docker run -it cmd.cat/curl/wget
docker run -it cmd.cat/htop/iostat

# ... or a lot of commands, how many you need.
docker run -it cmd.cat/ping/nmap/whois
docker run -it cmd.cat/ngrep/tcpdump/ip/ifconfig/netstat

Use the generated image with host/container pid/network modes to debug and monitor your containers or the host system.

docker run -d --name nginx nginx

# Enter the shell with all network tools available
docker run -it --net container:nginx cmd.cat/curl/ab/ngrep
# Monitor all network interfaces of the nginx container
docker run -it --net container:nginx cmd.cat/ngrep ngrep -d any
docker run -d --name redis redis

# Monitor the processes running inside the redis container
docker run -it --pid container:redis cmd.cat/htop htop
# Monitor network and processes on the host system
docker run -it --net host --pid host cmd.cat/htop/ngrep

Running

Run the project locally or deploy it internally inside your company with a single command that will pull all the required images and build the registry proxy:

git clone https://github.com/lukaszlach/commando.git
cd commando
docker-compose up -d

Run any command built locally the same way:

docker run -it localhost:5050/tcpdump
docker run -it localhost:5050/strace/php

The first run needs to build the base image so it takes longer than all further calls.

License

MIT License

Copyright (c) 2019 Łukasz Lach [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


Google Nixery ❤️

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].