mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-19 00:32:34 +01:00
1.12 benchmark
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
This commit is contained in:
parent
a36be342c0
commit
a91d2fca56
2 changed files with 5 additions and 8 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
The Docker Bench for Security is a script that checks for dozens of common
|
The Docker Bench for Security is a script that checks for dozens of common
|
||||||
best-practices around deploying Docker containers in production. The tests are
|
best-practices around deploying Docker containers in production. The tests are
|
||||||
all automated, and are inspired by the [CIS Docker 1.11 Benchmark](https://benchmarks.cisecurity.org/tools2/docker/CIS_Docker_1.11.0_Benchmark_v1.0.0.pdf).
|
all automated, and are inspired by the [CIS Docker 1.12 Benchmark](https://benchmarks.cisecurity.org/tools2/docker/CIS_Docker_1.12.0_Benchmark_v1.0.0.pdf).
|
||||||
We are releasing this as a follow-up to our [Understanding Docker Security and Best Practices](https://blog.docker.com/2015/05/understanding-docker-security-and-best-practices/)
|
We are releasing this as a follow-up to our [Understanding Docker Security and Best Practices](https://blog.docker.com/2015/05/understanding-docker-security-and-best-practices/)
|
||||||
blog post.
|
blog post.
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Docker Bench for Security v1.1.0
|
# Docker Bench for Security v1.2.0
|
||||||
#
|
#
|
||||||
# Docker, Inc. (c) 2015-
|
# Docker, Inc. (c) 2015-
|
||||||
#
|
#
|
||||||
# Checks for dozens of common best-practices around deploying Docker containers in production.
|
# Checks for dozens of common best-practices around deploying Docker containers in production.
|
||||||
# Inspired by the CIS Docker 1.11 Benchmark:
|
# Inspired by the CIS Docker 1.12 Benchmark.
|
||||||
# https://benchmarks.cisecurity.org/downloads/show-single/index.cfm?file=docker16.110
|
|
||||||
#
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
# Load dependencies
|
# Load dependencies
|
||||||
|
@ -59,13 +57,12 @@ if [ -z "$logger" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
yell "# ------------------------------------------------------------------------------
|
yell "# ------------------------------------------------------------------------------
|
||||||
# Docker Bench for Security v1.1.0
|
# Docker Bench for Security v1.2.0
|
||||||
#
|
#
|
||||||
# Docker, Inc. (c) 2015-
|
# Docker, Inc. (c) 2015-
|
||||||
#
|
#
|
||||||
# Checks for dozens of common best-practices around deploying Docker containers in production.
|
# Checks for dozens of common best-practices around deploying Docker containers in production.
|
||||||
# Inspired by the CIS Docker 1.11 Benchmark:
|
# Inspired by the CIS Docker 1.12 Benchmark.
|
||||||
# https://benchmarks.cisecurity.org/downloads/show-single/index.cfm?file=docker16.110
|
|
||||||
# ------------------------------------------------------------------------------"
|
# ------------------------------------------------------------------------------"
|
||||||
|
|
||||||
# Warn if not root
|
# Warn if not root
|
||||||
|
|
Loading…
Reference in a new issue