Skip to content

Commit

Permalink
adding docker-bench-security
Browse files Browse the repository at this point in the history
  • Loading branch information
rajithkrishnegowda committed Sep 26, 2024
1 parent 9b7e6ee commit 33c0f6e
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/docker-bench-security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Docker Bench for Security

on:
pull_request:
branches: [ develop ]

permissions:
contents: read

jobs:
docker-bench-security:
runs-on: ubuntu-latest

steps:
- name: Checkout code
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: Run Docker Bench for Security
run: |
mkdir -p results
docker run --rm --privileged --pid host \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume /usr:/usr \
--volume /etc:/etc \
--volume /lib/modules:/lib/modules:ro \
docker/docker-bench-security > results/docker-bench-results.txt
- name: Upload Results
uses: actions/upload-artifact@v3
with:
name: docker-bench-results
path: results/docker-bench-results.txt

0 comments on commit 33c0f6e

Please sign in to comment.