testssl.sh/Dockerfile.md

25 lines
767 B
Docker
Raw Normal View History

## Usage:
2018-02-08 21:06:19 +01:00
(in git directory):
```
2018-02-08 21:06:19 +01:00
docker build -t mytestssl .
docker run -t mytestssl example.com
```
2018-02-08 21:06:19 +01:00
You can also supply command line options like:
``docker run -t mytestssl -p --header example.com``
Please keep in mind that any output file (--log, --html, --json etc.) will be created
2019-04-24 21:52:53 +02:00
in the container. Also if you don't provide a user, this docker container uses a non-root user.
2018-02-08 21:06:19 +01:00
2019-04-24 21:52:53 +02:00
You can also pull the image from dockerhub and run:
```
2018-02-08 21:06:19 +01:00
docker run -t drwetter/testssl.sh --pfs example.com
```
2017-11-19 16:48:05 +01:00
2019-04-24 21:52:53 +02:00
Tags supported are currently: ``latest``, ``stable`` which are all the same and point to ``3.0``. And for the indomitable users who prefer to run old stuff ``2.9.5``. The tag ``2.9dev`` should not be used.
2018-02-08 21:06:19 +01:00
2019-04-24 21:52:53 +02:00
``docker run -t drwetter/testssl.sh:stable example.com``.