2022-01-08 10:03:15 +00:00
|
|
|
define NOLOGGING
|
|
|
|
|
|
|
|
logging:
|
|
|
|
driver: none
|
|
|
|
endef
|
|
|
|
export NOLOGGING
|
|
|
|
|
2022-01-03 02:26:03 +00:00
|
|
|
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:
|
2022-01-07 10:43:59 +00:00
|
|
|
git tag -a v$(shell date "+%Y-%m-%d")_$(shell git rev-parse --short HEAD) -m v$(shell date "+%Y-%m-%d")
|
2022-01-08 10:03:15 +00:00
|
|
|
git push --tags
|
|
|
|
|
|
|
|
nolog:
|
|
|
|
echo "$$NOLOGGING">> worker.yml
|