[bitnami/*] Fix markdown linter issues (#23945)

* [bitnami/*] Fix markdown linter issues

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

* Add leftovers

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

* Update CODE_OF_CONDUCT.md

Co-authored-by: Andrés Bono <andresbonojimenez@gmail.com>
Signed-off-by: Carlos Rodríguez Hernández <carrodher1179@gmail.com>

* Update CONTRIBUTING.md

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

* Update bitnami/zookeeper/README.md

Co-authored-by: Andrés Bono <andresbonojimenez@gmail.com>
Signed-off-by: Carlos Rodríguez Hernández <carrodher1179@gmail.com>

* Linter fix

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

* Order lists

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

* Fix markdown

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

* Order lists

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>

---------

Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
Signed-off-by: Carlos Rodríguez Hernández <carrodher1179@gmail.com>
Co-authored-by: Andrés Bono <andresbonojimenez@gmail.com>
This commit is contained in:
Carlos Rodríguez Hernández
2023-02-16 11:38:13 +01:00
committed by GitHub
parent 9d243a6d23
commit d7bd442eba
218 changed files with 6677 additions and 6711 deletions

View File

@@ -11,7 +11,7 @@ Trademarks: This software listing is packaged by Bitnami. The respective tradema
## TL;DR
```console
$ docker run --name airflow-exporter bitnami/airflow-exporter:latest
docker run --name airflow-exporter bitnami/airflow-exporter:latest
```
## Why use Bitnami Images?
@@ -40,21 +40,21 @@ Subscribe to project updates by watching the [bitnami/containers GitHub repo](ht
The recommended way to get the Bitnami Airflow Exporter Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/airflow-exporter).
```console
$ docker pull bitnami/airflow-exporter:latest
docker pull bitnami/airflow-exporter:latest
```
To use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/bitnami/airflow-exporter/tags/) in the Docker Hub Registry.
```console
$ docker pull bitnami/airflow-exporter:[TAG]
docker pull bitnami/airflow-exporter:[TAG]
```
If you wish, you can also build the image yourself by cloning the repository, changing to the directory containing the Dockerfile and executing the `docker build` command. Remember to replace the `APP`, `VERSION` and `OPERATING-SYSTEM` path placeholders in the example command below with the correct values.
```console
$ git clone https://github.com/bitnami/containers.git
$ cd bitnami/APP/VERSION/OPERATING-SYSTEM
$ docker build -t bitnami/APP:latest .
git clone https://github.com/bitnami/containers.git
cd bitnami/APP/VERSION/OPERATING-SYSTEM
docker build -t bitnami/APP:latest .
```
## Connecting to other containers
@@ -68,7 +68,7 @@ Containers attached to the same network can communicate with each other using th
#### Step 1: Create a network
```console
$ docker network create airflow-exporter-network --driver bridge
docker network create airflow-exporter-network --driver bridge
```
#### Step 2: Launch the airflow-exporter container within your network
@@ -76,7 +76,7 @@ $ docker network create airflow-exporter-network --driver bridge
Use the `--network <NETWORK>` argument to the `docker run` command to attach the container to the `airflow-exporter-network` network.
```console
$ docker run --name airflow-exporter-node1 --network airflow-exporter-network bitnami/airflow-exporter:latest
docker run --name airflow-exporter-node1 --network airflow-exporter-network bitnami/airflow-exporter:latest
```
#### Step 3: Run another containers
@@ -92,7 +92,7 @@ Find all the configuration options in the [Airflow Prometheus Exporter documenta
The Bitnami Airflow Exporter Docker image sends the container logs to `stdout`. To view the logs:
```console
$ docker logs airflow-exporter
docker logs airflow-exporter
```
You can configure the containers [logging driver](https://docs.docker.com/engine/admin/logging/overview/) using the `--log-driver` option if you wish to consume the container logs differently. In the default configuration docker uses the `json-file` driver.
@@ -106,7 +106,7 @@ Bitnami provides up-to-date versions of Airflow Exporter, including security pat
#### Step 1: Get the updated image
```console
$ docker pull bitnami/airflow-exporter:latest
docker pull bitnami/airflow-exporter:latest
```
#### Step 2: Stop the running container
@@ -114,13 +114,13 @@ $ docker pull bitnami/airflow-exporter:latest
Stop the currently running container using the command
```console
$ docker stop airflow-exporter
docker stop airflow-exporter
```
#### Step 3: Remove the currently running container
```console
$ docker rm -v airflow-exporter
docker rm -v airflow-exporter
```
#### Step 4: Run the new image
@@ -128,7 +128,7 @@ $ docker rm -v airflow-exporter
Re-create your container from the new image.
```console
$ docker run --name airflow-exporter bitnami/airflow-exporter:latest
docker run --name airflow-exporter bitnami/airflow-exporter:latest
```
## Contributing
@@ -147,7 +147,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
<http://www.apache.org/licenses/LICENSE-2.0>
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,