2020-01-16 10:27:46 +00:00
|
|
|
---
|
|
|
|
title: Using docker
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
{{< highlight Shell "linenos=table" >}}
|
|
|
|
docker run \
|
|
|
|
-e ANSIBLE_DOCTOR_ROLE_DIR=example/demo-role/ \
|
|
|
|
-e ANSIBLE_DOCTOR_OUTPUT_DIR=example/ \
|
|
|
|
-e ANSIBLE_DOCTOR_FORCE_OVERWRITE=true \
|
|
|
|
-e ANSIBLE_DOCTOR_CUSTOM_HEADER=example/demo-role/HEADER.md \
|
|
|
|
-e ANSIBLE_DOCTOR_LOG_LEVEL=info \
|
|
|
|
-e PY_COLORS=1 \
|
|
|
|
-v $(pwd):/doctor \
|
|
|
|
-w /doctor \
|
|
|
|
xoxys/ansible-doctor
|
|
|
|
{{< /highlight >}}
|
|
|
|
|
|
|
|
{{< hint info >}}
|
2020-01-16 10:39:07 +00:00
|
|
|
**Info**\
|
2020-01-16 10:27:46 +00:00
|
|
|
Keep in mind, that you have to pass selinux labels (:Z or :z) to your mount option if you are working on selinux enabled systems.
|
|
|
|
{{< /hint >}}
|