Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Air | 11,651 | 60 | 20 hours ago | 70 | June 02, 2023 | 131 | gpl-3.0 | Go | ||
☁️ Live reload for Go apps | ||||||||||
Wordmove | 1,808 | 10 | 2 | a year ago | 101 | January 04, 2022 | 17 | mit | Ruby | |
Multi-stage command line deploy/mirroring and task runner for Wordpress | ||||||||||
Dobi | 283 | 2 years ago | 9 | October 23, 2021 | 59 | apache-2.0 | Go | |||
A build automation tool for Docker applications | ||||||||||
Tasker | 125 | 5 years ago | 8 | Java | ||||||
Tasker is a multipurpose task runner | ||||||||||
Dunner | 44 | 4 years ago | 9 | July 28, 2019 | 22 | mit | Go | |||
Dunner is a task runner tool like Grunt but used Docker images like CircleCI do. You can define tasks and steps of the tasks in your `.dunner.yaml` file and then run these steps with `Dunner do taskname` | ||||||||||
Pico | 42 | 2 years ago | 5 | October 27, 2020 | 23 | mit | Go | |||
A Git-driven task runner built to facilitate GitOps and Infrastructure-as-Code while securely passing secrets to tasks. | ||||||||||
Task Runner | 33 | 32 | 36 | 6 months ago | 21 | February 21, 2022 | 35 | eupl-1.2 | PHP | |
PHP task runner based on Robo, focused on extensibility. | ||||||||||
Ecs Task Runner | 17 | a year ago | 1 | Go | ||||||
A synchronous task runner for AWS Fargate on Amazon ECS | ||||||||||
Werk | 16 | a year ago | 1 | mit | Crystal | |||||
Dead simple task runner | ||||||||||
Sir | 13 | 6 years ago | 1 | mit | JavaScript | |||||
(Work in progress) An open source assistant . Python 3 + aiohttp on the backend. ES6 + Redux + React on the frontend. |
Docker Compose execute task runner
Example in node dev:
You might have ran npm run <command>
Now in docker you have to run docker-compose exec <service_name> <command>
dce lets you remove the generic parts of the commands you run most often, so that you can now type dce <command>
e.g. dce test
brew tap TimPerry/repo
brew install dce
Each project requires a .dce file in this format:
service_name=<your_service_name>
command_prefix=<the_command_prefix>
e.g. (node example)
service_name=app
command_prefix=npm run
Add this to your .zshrc file unalias dce
otherwise the plugin will take precedence.