added exclude buckets option
All checks were successful
Publish / Publish Docker Container (push) Successful in 2m27s

This commit is contained in:
2026-01-29 07:57:59 +11:00
parent d6ef9079b6
commit 167a327365
2 changed files with 6 additions and 1 deletions

View File

@@ -29,5 +29,5 @@ pip freeze > requirements.txt
The S3 Recent File Cleaner is best run as a once off docker image. The image is already built so can be run with the following command.
```bash
docker run --rm -e S3_ACCESS_KEY=your_access_key -e S3_SECRET_KEY=your_secret_key -e S3_ENDPOINT=your_endpoint liamsgit.dev/liampietralla/s3-recent-file-cleaner:latest
docker run --rm -e S3_ACCESS_KEY=your_access_key -e S3_SECRET_KEY=your_secret_key -e S3_ENDPOINT=your_endpoint -e EXCLUDE_BUCKETS=your_excluded_buckets,another-bucket liamsgit.dev/liampietralla/s3-recent-file-cleaner:latest
```