From 56b6e304bbdaa9a631a18ac95ffdfe95b7fef307 Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 5 Jun 2023 14:32:47 +0930 Subject: [PATCH] docs: fix typo !29 close #8 --- .gitlab-ci.yml | 2 +- docs/projects/execution_environment/index.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0d1af14..f82f12a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,7 @@ variables: DOCKER_IMAGE_PUBLISH_NAME: 'ansible-ee' DOCKER_IMAGE_PUBLISH_REGISTRY: docker.io/nofusscomputing DOCKER_IMAGE_PUBLISH_URL: https://hub.docker.com/r/nofusscomputing/$DOCKER_IMAGE_PUBLISH_NAME - + PAGES_ENVIRONMENT_PATH: projects/execution_environment/ include: - project: nofusscomputing/projects/gitlab-ci diff --git a/docs/projects/execution_environment/index.md b/docs/projects/execution_environment/index.md index 2dc8cf2..9a162ae 100644 --- a/docs/projects/execution_environment/index.md +++ b/docs/projects/execution_environment/index.md @@ -21,7 +21,7 @@ The docker container is built from the python-slim image with a few extra items Included features are only included if a role that we create requires it. Currently we use the pythonx.xx-{debian release} as abase image which makes available the debian packages should you require additional features/sofware not specified below. -- custom [ansible.cfg](#ansible.cfg) +- custom [ansible.cfg](#ansible%20config%20file) - environmental variable `ANSIBLE_PLAYBOOK_DIR` set pointing to `/etc/ansible/playbooks`. @@ -66,7 +66,7 @@ We use the following tags for our docker containers ## Dockerfile -``` dockerfile title="dockerfile" linnums="1" +``` dockerfile title="dockerfile" linenums="1" --8<-- "dockerfile" @@ -74,18 +74,18 @@ We use the following tags for our docker containers This dockerfile is only used to build the python packages for cross platform compilation. -``` dockerfile title="dockerfile-build_cache" linnums="1" +``` dockerfile title="dockerfile-build_cache" linenums="1" --8<-- "dockerfile-build_cache" ``` -## ansible.cfg +## ansible config file This ansible config file is included within this docker container. -``` dockerfile title="/etc/ansible/ansible.cfg" linnums="1" +``` ini title="/etc/ansible/ansible.cfg" linenums="1" --8<-- "includes/etc/ansible/ansible.cfg"