mirror of
https://github.com/omg-xtao/ytdlbot.git
synced 2024-11-16 03:45:23 +00:00
79496fcd8a
fix Makefile
26 lines
463 B
Makefile
26 lines
463 B
Makefile
default:
|
|
docker pull bennythink/ytdlbot
|
|
|
|
bot:
|
|
make
|
|
docker-compose up -d
|
|
docker system prune -a --volumes -f
|
|
|
|
worker:
|
|
make
|
|
docker-compose -f worker.yml up -d
|
|
docker system prune -a --volumes -f
|
|
sleep 5
|
|
|
|
weak-worker:
|
|
make
|
|
docker-compose --compatibility -f worker.yml up -d
|
|
docker system prune -a --volumes -f
|
|
sleep 5
|
|
|
|
upgrade-all-worker:
|
|
bash upgrade_worker.sh
|
|
|
|
tag:
|
|
git tag -a v$(shell date "+%Y-%m-%d") -m v$(shell date "+%Y-%m-%d")
|
|
git push --tags
|