Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mrusme/cmdr
- Owner: mrusme
- License: mit
- Created: 2020-05-20T16:46:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-28T14:58:59.000Z (over 2 years ago)
- Last Synced: 2024-10-18T06:36:25.158Z (3 months ago)
- Topics: docker, entrypoint, minimal
- Language: Rust
- Homepage: https://xn--gckvb8fzb.com
- Size: 20.5 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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 informationOPTIONS:
-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"
```