Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mrusme/cmdr

A minimalistic single-binary tool that can be used as Docker ENTRYPOINT to run multiple commands simultaneously
https://github.com/mrusme/cmdr

docker entrypoint minimal

Last synced: 7 days ago
JSON representation

A minimalistic single-binary tool that can be used as Docker ENTRYPOINT to run multiple commands simultaneously

Awesome Lists containing this project

README

        

cmdr
----

A minimalistic, zero-configuration, single-binary tool built in Rust that runs multiple commands simultaneously and can be used as Docker `ENTRYPOINT`.

## Installation

### Manual

```bash
git clone https://github.com/mrusme/cmdr.git
cd cmdr
cargo install --path .
```

## Usage

```
USAGE:
cmdr --cmd ...

FLAGS:
-h, --help Prints help information
-V, --version Prints version information

OPTIONS:
-c, --cmd ... command to run
```

### Examples

```bash
cmdr --cmd "/bin/sleep 10" --cmd "/bin/ls"
```

```bash
cmdr --cmd "/usr/bin/caddy" --cmd "/usr/bin/mongod"
```