Add makefile prune

This commit is contained in:
2024-09-23 22:24:46 +02:00
parent c51eb0e5ff
commit 849ff61493

View File

@@ -4,6 +4,10 @@
deploy:
rsync -r --exclude='/.git' --filter=':- .gitignore' * services@master-bot:master-bot
.PHONY: prune
prune:
ssh services@master-bot "docker image prune -f"
.PHONY: up
up:
ssh services@master-bot "cd master-bot && docker-compose up -d --build"