Container will scan directories and delete any files with the specified file extensions
339
Example for Docker Compose
name: find-and-delete
services:
scan-delete:
image: bankaitech/scan-delete:latest
container_name: scan-delete
environment:
- TZ=America/New_York
- PUID=1000
- PGID=1000
- SCAN_DIRECTORIES=/Movies,/TV
- FILE_EXTENSIONS=.jpg,.nfo,.xml,.srt,.txt
- SCAN_TIME=30
volumes:
- /media/Movies:/Movies
- /media/TV:/TV
- ./scan_delete/Logs:/var/log
restart: unless-stopped
Content type
Image
Digest
sha256:335fbcdcd…
Size
59.4 MB
Last updated
almost 2 years ago
docker pull bankaitech/scan-delete