-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d33d199
commit 4cb50d9
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Docker Bench for Security | ||
|
||
on: | ||
pull_request: | ||
branches: [ develop ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.8" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install . | ||
- name: Clean Docker System | ||
run: | | ||
docker image prune -a -f | ||
docker system prune -a -f | ||
- name: Create results directory | ||
run: mkdir -p results | ||
- name: Run Docker Bench for Security | ||
run: | | ||
docker run --rm --net host --pid host --userns host --cap-add audit_control \ | ||
-e DOCKER_CONTENT_TRUST=0 \ | ||
-v /etc:/etc:ro \ | ||
-v /lib/systemd/system:/lib/systemd/system:ro \ | ||
-v /usr/bin/containerd:/usr/bin/containerd:ro \ | ||
-v /usr/bin/runc:/usr/bin/runc:ro \ | ||
-v /usr/lib/systemd:/usr/lib/systemd:ro \ | ||
-v /var/lib:/var/lib:ro \ | ||
-v /var/run/docker.sock:/var/run/docker.sock:ro \ | ||
-v "$(pwd)/results:/results" \ | ||
--label docker_bench_security \ | ||
docker/docker-bench-security | tee results/security_bench_report.txt | ||
- name: Upload Security Bench Report | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: security-bench-report | ||
path: results/security_bench_report.txt |