yaml -> yml

This commit is contained in:
Arnas Udovic 2025-06-23 12:55:05 +03:00
parent 90d319382c
commit 1df66dfd7b
2 changed files with 3 additions and 3 deletions

View file

@ -7,15 +7,15 @@ help:
### add-index: Add index host. Arguments: url and instance-url (optional)
.PHONY: add-index
add-index:
docker compose -f docker-compose.yaml exec -it peertube-instance-index-filter peertube-instance-index-filter -command index -url $(url) -instance-url $(instance-url)
docker compose -f docker-compose.yml exec -it peertube-instance-index-filter peertube-instance-index-filter -command index -url $(url) -instance-url $(instance-url)
### reject: Reject host. Arguments: host and reason (optional)
.PHONY: reject
reject:
docker compose -f docker-compose.yaml exec -it peertube-instance-index-filter peertube-instance-index-filter -command reject -host $(host) -reject-reason $(reason)
docker compose -f docker-compose.yml exec -it peertube-instance-index-filter peertube-instance-index-filter -command reject -host $(host) -reject-reason $(reason)
### audit: Audit hosts. Arguments: filter
.PHONY: audit
audit:
docker compose -f docker-compose.yaml exec -it peertube-instance-index-filter peertube-instance-index-filter -command audit -filter $(filter)
docker compose -f docker-compose.yml exec -it peertube-instance-index-filter peertube-instance-index-filter -command audit -filter $(filter)