The smart way to write tasks/scripts/jobs into your docker-compose.yml file
Declare your Jobs or Tasks into docker-compose.yml files as follow
## docker-compose.yml
version: '3'
services:
php:
image: php:8
db:
image: mysql:8
## --------------
## Jobs and Tasks
## --------------
## Creating database
create-database:
image: javanile/mysql-job
command:
- mysql -e "CREATE DATABASE mydb"
- rm -fr /etc/oldfiles
## Backup all files
backup-files:
image: javanile/bash-job
command:
- zip -u backup.zip ./filesNow use this simple commands to run your jobs
docker-compose run create-databasedocker-compose run backup-filesThank you for considering contributing to this project! The contribution guide can be found in the CONTRIBUTING.md.
In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct.
If you discover a security vulnerability within Laravel, please send an e-mail to Francesco Bianco via bianco@javanile.org. All security vulnerabilities will be promptly addressed.
This project is open-sourced software licensed under the MIT license.