https://github.com/codeclimate/shredder
A minimalist Docker image for securely removing data from directories.
https://github.com/codeclimate/shredder
opensource
Last synced: 6 months ago
JSON representation
A minimalist Docker image for securely removing data from directories.
- Host: GitHub
- URL: https://github.com/codeclimate/shredder
- Owner: codeclimate
- License: mit
- Created: 2017-01-23T20:16:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-06T16:17:36.000Z (over 8 years ago)
- Last Synced: 2025-03-01T03:23:51.338Z (11 months ago)
- Topics: opensource
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 17
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Code Climate Shredder

## Overview
A minimalist Docker image for securely removing data from directories.
## Usage
Mount directories to shred & pass their mounted paths to the container. Targets
are intended to be `rm -rf`ed, so you should mount the *parent* of the file you
want deleted, but specify the mounted path to the file you want deleted as an
argument.
```
> docker run --rm \
--volume "/my/data:/tmp/target1" \
--volume "/other/data:/tmp/target2" \
codeclimate/shredder /tmp/target1/dir-to-del /tmp/target2/other-target
```