Skip to content

Commit

Permalink
Run update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
docker-library-bot committed Sep 23, 2022
1 parent 1c83189 commit 6970470
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 50 deletions.
2 changes: 1 addition & 1 deletion consul/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ WARNING:

- [`1.13.2`, `1.13`, `latest`](https://github.com/hashicorp/docker-consul/blob/6e9b9a6197861f40f088edb01e3ad6f3b519c2ce/0.X/Dockerfile)
- [`1.12.5`, `1.12`](https://github.com/hashicorp/docker-consul/blob/26cfa29751dacccf73a0d2232cc8b83d7df137c3/0.X/Dockerfile)
- [`1.11.9`, `1.11`](https://github.com/hashicorp/docker-consul/blob/bb3a4d9076b33411a36057f43a85ce722f7ac584/0.X/Dockerfile)
- [`1.11.10`, `1.11`](https://github.com/hashicorp/docker-consul/blob/2713f8eca7031e62f2da41038b47724e1590c165/0.X/Dockerfile)

# Quick reference (cont.)

Expand Down
4 changes: 2 additions & 2 deletions haproxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ WARNING:

- [`2.7-dev6`, `2.7-dev`, `2.7-dev6-bullseye`, `2.7-dev-bullseye`](https://github.com/docker-library/haproxy/blob/cfeedce7f5b0d926605b57a7ae8510f9dd8a9f11/2.7/Dockerfile)
- [`2.7-dev6-alpine`, `2.7-dev-alpine`, `2.7-dev6-alpine3.16`, `2.7-dev-alpine3.16`](https://github.com/docker-library/haproxy/blob/cfeedce7f5b0d926605b57a7ae8510f9dd8a9f11/2.7/alpine/Dockerfile)
- [`2.6.5`, `2.6`, `lts`, `latest`, `2.6.5-bullseye`, `2.6-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/039e62b8f996edea64e90cb7e0b98bfefab9cb64/2.6/Dockerfile)
- [`2.6.5-alpine`, `2.6-alpine`, `lts-alpine`, `alpine`, `2.6.5-alpine3.16`, `2.6-alpine3.16`, `lts-alpine3.16`, `alpine3.16`](https://github.com/docker-library/haproxy/blob/039e62b8f996edea64e90cb7e0b98bfefab9cb64/2.6/alpine/Dockerfile)
- [`2.6.6`, `2.6`, `lts`, `latest`, `2.6.6-bullseye`, `2.6-bullseye`, `lts-bullseye`, `bullseye`](https://github.com/docker-library/haproxy/blob/bfdb47e3bb0de8315bf08876d7720ab3f46ccc28/2.6/Dockerfile)
- [`2.6.6-alpine`, `2.6-alpine`, `lts-alpine`, `alpine`, `2.6.6-alpine3.16`, `2.6-alpine3.16`, `lts-alpine3.16`, `alpine3.16`](https://github.com/docker-library/haproxy/blob/bfdb47e3bb0de8315bf08876d7720ab3f46ccc28/2.6/alpine/Dockerfile)
- [`2.5.8`, `2.5`, `2.5.8-bullseye`, `2.5-bullseye`](https://github.com/docker-library/haproxy/blob/4652e975be3db3a69221e68a103dae4e5891313b/2.5/Dockerfile)
- [`2.5.8-alpine`, `2.5-alpine`, `2.5.8-alpine3.16`, `2.5-alpine3.16`](https://github.com/docker-library/haproxy/blob/4652e975be3db3a69221e68a103dae4e5891313b/2.5/alpine/Dockerfile)
- [`2.4.18`, `2.4`, `2.4.18-bullseye`, `2.4-bullseye`](https://github.com/docker-library/haproxy/blob/d8a314a8b07f41e256995557e348800560543c93/2.4/Dockerfile)
Expand Down
8 changes: 5 additions & 3 deletions mariadb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,12 @@ From tag 10.2.38, 10.3.29, 10.4.19, 10.5.10 onwards, and all 10.6 and later tags

One of `MARIADB_ROOT_PASSWORD`, `MARIADB_ALLOW_EMPTY_ROOT_PASSWORD`, or `MARIADB_RANDOM_ROOT_PASSWORD` (or equivalents, including `*_FILE`), is required. The other environment variables are optional.

### `MARIADB_ROOT_PASSWORD` / `MYSQL_ROOT_PASSWORD`
### `MARIADB_ROOT_PASSWORD` / `MYSQL_ROOT_PASSWORD`, `MARIADB_ROOT_PASSWORD_HASH`

This specifies the password that will be set for the MariaDB `root` superuser account. In the above example, it was set to `my-secret-pw`.

In order to have no plaintext secret in the deployment, `MARIADB_ROOT_PASSWORD_HASH` can be used as it is just the hash of the password. The hash can be generated with `SELECT PASSWORD('bob')` as a SQL query.

### `MARIADB_ALLOW_EMPTY_ROOT_PASSWORD` / `MYSQL_ALLOW_EMPTY_PASSWORD`

Set to a non-empty value, like `yes`, to allow the container to be started with a blank password for the root user. *NOTE*: Setting this variable to `yes` is not recommended unless you really know what you are doing, since this will leave your MariaDB instance completely unprotected, allowing anyone to gain complete superuser access.
Expand All @@ -208,7 +210,7 @@ The `mysql@localhost` user gets [USAGE](https://mariadb.com/kb/en/grant/#the-usa

This variable allows you to specify the name of a database to be created on image startup.

### `MARIADB_USER` / `MYSQL_USER`, `MARIADB_PASSWORD` / `MYSQL_PASSWORD`
### `MARIADB_USER` / `MYSQL_USER`, `MARIADB_PASSWORD` / `MYSQL_PASSWORD`, `MARIADB_PASSWORD_HASH`

These are used in conjunction to create a new user and to set that user's password. Both user and password variables are required for a user to be created. This user will be granted all access ([corresponding to `GRANT ALL`](https://mariadb.com/kb/en/grant/#the-all-privileges-privilege)) to the `MARIADB_DATABASE` database.

Expand All @@ -232,7 +234,7 @@ As an alternative to passing sensitive information via environment variables, `_
$ docker run --name some-mysql -e MARIADB_ROOT_PASSWORD_FILE=/run/secrets/mysql-root -d mariadb:latest
```

Currently, this is only supported for `MARIADB_ROOT_PASSWORD`, `MARIADB_ROOT_HOST`, `MARIADB_DATABASE`, `MARIADB_USER`, and `MARIADB_PASSWORD` (and `MYSQL_*` equivalents of these).
Currently, this is only supported for `MARIADB_ROOT_PASSWORD`, `MARIADB_ROOT_PASSWORD_HASH`, `MARIADB_ROOT_HOST`, `MARIADB_DATABASE`, `MARIADB_USER`, `MARIADB_PASSWORD` and `MARIADB_PASSWORD_HASH` (and `MYSQL_*` equivalents of these).

# Initializing a fresh instance

Expand Down
30 changes: 15 additions & 15 deletions mongo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ WARNING:
- [`5.0.12-windowsservercore-1809`, `5.0-windowsservercore-1809`, `5-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/89b7fa7c105c695779308713c8204dd1346e589f/5.0/windows/windowsservercore-1809/Dockerfile)
- [`5.0.12-nanoserver-ltsc2022`, `5.0-nanoserver-ltsc2022`, `5-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/89b7fa7c105c695779308713c8204dd1346e589f/5.0/windows/nanoserver-ltsc2022/Dockerfile)
- [`5.0.12-nanoserver-1809`, `5.0-nanoserver-1809`, `5-nanoserver-1809`](https://github.com/docker-library/mongo/blob/89b7fa7c105c695779308713c8204dd1346e589f/5.0/windows/nanoserver-1809/Dockerfile)
- [`4.4.17-rc0-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/Dockerfile)
- [`4.4.17-rc0-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile)
- [`4.4.17-rc0-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/windowsservercore-1809/Dockerfile)
- [`4.4.17-rc0-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile)
- [`4.4.17-rc0-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/nanoserver-1809/Dockerfile)
- [`4.4.17-rc2-focal`, `4.4-rc-focal`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/Dockerfile)
- [`4.4.17-rc2-windowsservercore-ltsc2022`, `4.4-rc-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile)
- [`4.4.17-rc2-windowsservercore-1809`, `4.4-rc-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/windowsservercore-1809/Dockerfile)
- [`4.4.17-rc2-nanoserver-ltsc2022`, `4.4-rc-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile)
- [`4.4.17-rc2-nanoserver-1809`, `4.4-rc-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/nanoserver-1809/Dockerfile)
- [`4.4.16-focal`, `4.4-focal`, `4-focal`](https://github.com/docker-library/mongo/blob/9631e54a2885018f440e8da2840c21793c156f94/4.4/Dockerfile)
- [`4.4.16-windowsservercore-ltsc2022`, `4.4-windowsservercore-ltsc2022`, `4-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/06b403b869fc79cf176561a47e5ccebf97a42bad/4.4/windows/windowsservercore-ltsc2022/Dockerfile)
- [`4.4.16-windowsservercore-1809`, `4.4-windowsservercore-1809`, `4-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/06b403b869fc79cf176561a47e5ccebf97a42bad/4.4/windows/windowsservercore-1809/Dockerfile)
Expand Down Expand Up @@ -86,16 +86,16 @@ WARNING:
- `5.0.12-nanoserver`, `5.0-nanoserver`, `5-nanoserver`:
- [`5.0.12-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/89b7fa7c105c695779308713c8204dd1346e589f/5.0/windows/nanoserver-ltsc2022/Dockerfile)
- [`5.0.12-nanoserver-1809`](https://github.com/docker-library/mongo/blob/89b7fa7c105c695779308713c8204dd1346e589f/5.0/windows/nanoserver-1809/Dockerfile)
- `4.4.17-rc0`, `4.4-rc`:
- [`4.4.17-rc0-focal`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/Dockerfile)
- [`4.4.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile)
- [`4.4.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/windowsservercore-1809/Dockerfile)
- `4.4.17-rc0-windowsservercore`, `4.4-rc-windowsservercore`:
- [`4.4.17-rc0-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile)
- [`4.4.17-rc0-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/windowsservercore-1809/Dockerfile)
- `4.4.17-rc0-nanoserver`, `4.4-rc-nanoserver`:
- [`4.4.17-rc0-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile)
- [`4.4.17-rc0-nanoserver-1809`](https://github.com/docker-library/mongo/blob/87f668e00ef592c52be247c5789251e7bf4d5782/4.4-rc/windows/nanoserver-1809/Dockerfile)
- `4.4.17-rc2`, `4.4-rc`:
- [`4.4.17-rc2-focal`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/Dockerfile)
- [`4.4.17-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile)
- [`4.4.17-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/windowsservercore-1809/Dockerfile)
- `4.4.17-rc2-windowsservercore`, `4.4-rc-windowsservercore`:
- [`4.4.17-rc2-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/windowsservercore-ltsc2022/Dockerfile)
- [`4.4.17-rc2-windowsservercore-1809`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/windowsservercore-1809/Dockerfile)
- `4.4.17-rc2-nanoserver`, `4.4-rc-nanoserver`:
- [`4.4.17-rc2-nanoserver-ltsc2022`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/nanoserver-ltsc2022/Dockerfile)
- [`4.4.17-rc2-nanoserver-1809`](https://github.com/docker-library/mongo/blob/ad32b559c9ea45c555c8b5c92dc76aa89966a165/4.4-rc/windows/nanoserver-1809/Dockerfile)
- `4.4.16`, `4.4`, `4`:
- [`4.4.16-focal`](https://github.com/docker-library/mongo/blob/9631e54a2885018f440e8da2840c21793c156f94/4.4/Dockerfile)
- [`4.4.16-windowsservercore-ltsc2022`](https://github.com/docker-library/mongo/blob/06b403b869fc79cf176561a47e5ccebf97a42bad/4.4/windows/windowsservercore-ltsc2022/Dockerfile)
Expand Down
22 changes: 11 additions & 11 deletions nats/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ WARNING:

## Simple Tags

- [`2.9.0-alpine3.16`, `2.9-alpine3.16`, `2-alpine3.16`, `alpine3.16`, `2.9.0-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/848127316dc6c9d753bc22c5d38ee2f40841e2fd/2.9.0/alpine3.16/Dockerfile)
- [`2.9.0-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.0-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/848127316dc6c9d753bc22c5d38ee2f40841e2fd/2.9.0/scratch/Dockerfile)
- [`2.9.0-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/848127316dc6c9d753bc22c5d38ee2f40841e2fd/2.9.0/windowsservercore-1809/Dockerfile)
- [`2.9.0-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/848127316dc6c9d753bc22c5d38ee2f40841e2fd/2.9.0/nanoserver-1809/Dockerfile)
- [`2.9.1-alpine3.16`, `2.9-alpine3.16`, `2-alpine3.16`, `alpine3.16`, `2.9.1-alpine`, `2.9-alpine`, `2-alpine`, `alpine`](https://github.com/nats-io/nats-docker/blob/dda1ba71ac21d322fc56ab4edb17eaa313aa4351/2.9.1/alpine3.16/Dockerfile)
- [`2.9.1-scratch`, `2.9-scratch`, `2-scratch`, `scratch`, `2.9.1-linux`, `2.9-linux`, `2-linux`, `linux`](https://github.com/nats-io/nats-docker/blob/dda1ba71ac21d322fc56ab4edb17eaa313aa4351/2.9.1/scratch/Dockerfile)
- [`2.9.1-windowsservercore-1809`, `2.9-windowsservercore-1809`, `2-windowsservercore-1809`, `windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dda1ba71ac21d322fc56ab4edb17eaa313aa4351/2.9.1/windowsservercore-1809/Dockerfile)
- [`2.9.1-nanoserver-1809`, `2.9-nanoserver-1809`, `2-nanoserver-1809`, `nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dda1ba71ac21d322fc56ab4edb17eaa313aa4351/2.9.1/nanoserver-1809/Dockerfile)

## Shared Tags

- `2.9.0`, `2.9`, `2`, `latest`:
- [`2.9.0-scratch`](https://github.com/nats-io/nats-docker/blob/848127316dc6c9d753bc22c5d38ee2f40841e2fd/2.9.0/scratch/Dockerfile)
- [`2.9.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/848127316dc6c9d753bc22c5d38ee2f40841e2fd/2.9.0/nanoserver-1809/Dockerfile)
- `2.9.0-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`:
- [`2.9.0-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/848127316dc6c9d753bc22c5d38ee2f40841e2fd/2.9.0/windowsservercore-1809/Dockerfile)
- `2.9.0-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`:
- [`2.9.0-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/848127316dc6c9d753bc22c5d38ee2f40841e2fd/2.9.0/nanoserver-1809/Dockerfile)
- `2.9.1`, `2.9`, `2`, `latest`:
- [`2.9.1-scratch`](https://github.com/nats-io/nats-docker/blob/dda1ba71ac21d322fc56ab4edb17eaa313aa4351/2.9.1/scratch/Dockerfile)
- [`2.9.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dda1ba71ac21d322fc56ab4edb17eaa313aa4351/2.9.1/nanoserver-1809/Dockerfile)
- `2.9.1-windowsservercore`, `2.9-windowsservercore`, `2-windowsservercore`, `windowsservercore`:
- [`2.9.1-windowsservercore-1809`](https://github.com/nats-io/nats-docker/blob/dda1ba71ac21d322fc56ab4edb17eaa313aa4351/2.9.1/windowsservercore-1809/Dockerfile)
- `2.9.1-nanoserver`, `2.9-nanoserver`, `2-nanoserver`, `nanoserver`:
- [`2.9.1-nanoserver-1809`](https://github.com/nats-io/nats-docker/blob/dda1ba71ac21d322fc56ab4edb17eaa313aa4351/2.9.1/nanoserver-1809/Dockerfile)

# Quick reference (cont.)

Expand Down
Loading

0 comments on commit 6970470

Please sign in to comment.