diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:11:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:11:11 +0000 |
commit | ba28aa09cebfba17fd16de2af6fedf7ecc76eea5 (patch) | |
tree | 44e2ff1493776a06e95c359c53a1cabca5d8a8d4 /Dockerfile.md | |
parent | Initial commit. (diff) | |
download | testssl.sh-ba28aa09cebfba17fd16de2af6fedf7ecc76eea5.tar.xz testssl.sh-ba28aa09cebfba17fd16de2af6fedf7ecc76eea5.zip |
Adding upstream version 3.2~rc3+dfsg.upstream/3.2_rc3+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'Dockerfile.md')
-rw-r--r-- | Dockerfile.md | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/Dockerfile.md b/Dockerfile.md new file mode 100644 index 0000000..27ab6b0 --- /dev/null +++ b/Dockerfile.md @@ -0,0 +1,49 @@ +## Usage + +### From git directory + +``` +docker build . +``` + +Catch is when you run without image tags you need to catch the ID when building + +``` +[..] +---> 889fa2f99933 +Successfully built 889fa2f99933 +``` + +More comfortable is + +``` +docker build -t mytestssl . +docker run --rm -t mytestssl example.com +``` + +You can also supply command line options like: + +``` +docker run -t mytestssl --help +docker run --rm -t mytestssl -p --header example.com +``` + +### From dockerhub + +You can pull the image from dockerhub and run: + +``` +docker run --rm -t drwetter/testssl.sh --fs example.com +``` + +Supported tags are: ``3.2`` and ``latest`, which are the same, i.e. the rolling release. ``3.0`` is the latest stable version from git which might have a few improvements (see git log) over the released version 3.0.X. + +``docker run --rm -t drwetter/testssl.sh:stable example.com``. + +Keep in mind that any output file (--log, --html, --json etc.) will be created within the container. If you wish to have this created in a local directory on your host you can mount a volume into the container and change the output prefix where the container user has write access to, e.g.: + +``` +docker run --rm -t -v /tmp:/data drwetter/testssl.sh --htmlfile /data/ example.com +``` + +which writes the HTML output to ``/tmp/example.com_p443-<date>-<time>.html.`` The uid/gid is the one from the docker user. Normally the file is 644. testssl.sh's docker container uses a non-root user (usually with user/groupid 1000:1000). |