https://github.com/signiant/whitesource-fs-scanner-docker
Docker container to run the whitesource filesystem scanner
https://github.com/signiant/whitesource-fs-scanner-docker
Last synced: 3 months ago
JSON representation
Docker container to run the whitesource filesystem scanner
- Host: GitHub
- URL: https://github.com/signiant/whitesource-fs-scanner-docker
- Owner: Signiant
- License: mit
- Created: 2018-01-11T19:13:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-22T13:09:48.000Z (over 8 years ago)
- Last Synced: 2025-06-09T16:06:31.419Z (11 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# whitesource-fs-scanner-docker
Lightweight Docker container to run the whitesource filesystem scanner (based on Alpine Linux)
# Running
The container just calls the whitesource file system scanner using the openjdk JRE v8. As such, all of the command line arguments documented in the [Whitesource documentation](https://whitesource.atlassian.net/wiki/spaces/WD/pages/33718339/File+System+Agent) apply
When running, you will need to bind mount the whitesource config file as well as the content you wish to scan. For example
```bash
docker run \
-v "/path/to/my/whitesource-config-file:/whitesource.config \
-v "/path/to/my/source/to/scan:/source" \
signiant/whitesource-fs-scanner \
-apiKey mykey -c /whitesource.config -d /source
```