Run update.sh

This commit is contained in:
Docker Library Bot 2023-05-22 17:16:16 -07:00
parent 7b128c7411
commit 4398bdb1db
5 changed files with 68 additions and 178 deletions

View File

@ -24,8 +24,8 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`5.0`, `5.0-20230508`, `latest`](https://github.com/vmware/photon-docker-image/blob/632a31370122286585265e8f90f8d01abf6b48f8/docker/Dockerfile)
- [`4.0`, `4.0-20230515`](https://github.com/vmware/photon-docker-image/blob/ce749a6a6b5af6decb6edf27fbf661a03d82ff69/docker/Dockerfile)
- [`5.0`, `5.0-20230522`, `latest`](https://github.com/vmware/photon-docker-image/blob/a7896ab0c58f1b1d737e86a586cc776b9242f3b5/docker/Dockerfile)
- [`4.0`, `4.0-20230522`](https://github.com/vmware/photon-docker-image/blob/0a67cdeea16ca7893d75b8ad5ac38b0f03f32ad1/docker/Dockerfile)
- [`3.0`, `3.0-20230515`](https://github.com/vmware/photon-docker-image/blob/8f9b582d6859a0966cff38b98474fdae75fc07f4/docker/Dockerfile)
# Quick reference (cont.)

View File

@ -24,10 +24,10 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`3.12.0-rc.2`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/c0b2f923c9606ce2581869344928f0146241e099/3.12-rc/ubuntu/Dockerfile)
- [`3.12.0-rc.2-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile)
- [`3.12.0-rc.2-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/c0b2f923c9606ce2581869344928f0146241e099/3.12-rc/alpine/Dockerfile)
- [`3.12.0-rc.2-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile)
- [`3.12.0-rc.3`, `3.12-rc`](https://github.com/docker-library/rabbitmq/blob/d4a5dd93da59ff2d187bf9ee646496af737ac10f/3.12-rc/ubuntu/Dockerfile)
- [`3.12.0-rc.3-management`, `3.12-rc-management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/ubuntu/management/Dockerfile)
- [`3.12.0-rc.3-alpine`, `3.12-rc-alpine`](https://github.com/docker-library/rabbitmq/blob/d4a5dd93da59ff2d187bf9ee646496af737ac10f/3.12-rc/alpine/Dockerfile)
- [`3.12.0-rc.3-management-alpine`, `3.12-rc-management-alpine`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.12-rc/alpine/management/Dockerfile)
- [`3.11.16`, `3.11`, `3`, `latest`](https://github.com/docker-library/rabbitmq/blob/c38ceb4d79f6d775973792da78e71e52d3c99ab9/3.11/ubuntu/Dockerfile)
- [`3.11.16-management`, `3.11-management`, `3-management`, `management`](https://github.com/docker-library/rabbitmq/blob/b41c10aaddc91da62f96994ab62e9d1ea590c455/3.11/ubuntu/management/Dockerfile)
- [`3.11.16-alpine`, `3.11-alpine`, `3-alpine`, `alpine`](https://github.com/docker-library/rabbitmq/blob/c38ceb4d79f6d775973792da78e71e52d3c99ab9/3.11/alpine/Dockerfile)

View File

@ -50,47 +50,42 @@ WARNING:
- **Source of this description**:
[docs repo's `telegraf/` directory](https://github.com/docker-library/docs/tree/master/telegraf) ([history](https://github.com/docker-library/docs/commits/master/telegraf))
# Telegraf
# What is telegraf?
Telegraf is an open source agent written in Go for collecting metrics and data on the system it's running on or from other services. Telegraf writes data it collects to InfluxDB in the correct format.
Telegraf is an open source agent for collecting, processing, aggregating, and writing metrics. Based on a plugin system to enable developers in the community to easily add support for additional metric collection. There are five distinct types of plugins:
- Input plugins collect metrics from the system, services, or 3rd party APIs
- Output plugins write metrics to various destinations
- Processor plugins transform, decorate, and/or filter metrics
- Aggregator plugins create aggregate metrics (e.g. mean, min, max, quantiles, etc.)
- Secret Store plugins are used to hide secrets from the configuration file
[Telegraf Official Docs](https://docs.influxdata.com/telegraf/latest/get_started/)
![logo](https://raw.githubusercontent.com/docker-library/docs/43d87118415bb75d7bb107683e79cd6d69186f67/telegraf/logo.png)
![logo](https://raw.githubusercontent.com/docker-library/docs/7b128c7411e3e8375d9639e6455e47874940f012/telegraf/logo.png)
## Using this image
# How to use this image
### Exposed Ports
## Exposed Ports
- 8125 StatsD
- 8125 UDP
- 8092 UDP
- 8094 TCP
### Using the default configuration
## Configuration file
The default configuration requires a running InfluxDB instance as an output plugin. Ensure that InfluxDB is running on port 8086 before starting the Telegraf container.
The user is required to provide a valid configuration to use the image. A valid configuration has at least one input and one output plugin specified. The following will walk through the general steps to get going.
Minimal example to start an InfluxDB container:
### Basic Example
```console
$ docker run -d --name influxdb -p 8086:8086 influxdb
Configuration files are TOML-based files that declare which plugins to use. A very simple configuration file, `telegraf.conf`, that collects metrics from the system CPU and outputs the metrics to stdout looks like the following:
```toml
[[inputs.cpu]]
[[outputs.file]]
```
Starting Telegraf using the default config, which connects to InfluxDB at `http://localhost:8086/`:
```console
$ docker run --net=container:influxdb telegraf
```
### Using a custom config file
First, generate a sample configuration and save it as `telegraf.conf` on the host:
```console
$ docker run --rm telegraf telegraf config > telegraf.conf
```
Once you've customized `telegraf.conf`, you can run the Telegraf container with it mounted in the expected location:
Once a user has a customized configuration file, they can launch a Telegraf container with it mounted in the expected location:
```console
$ docker run -v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro telegraf
@ -100,131 +95,26 @@ Modify `$PWD` to the directory where you want to store the configuration file.
Read more about the Telegraf configuration [here](https://docs.influxdata.com/telegraf/latest/administration/configuration/).
### Using the container with input plugins
### Sample Configuration
These examples assume you are using a custom configuration file that takes advantage of Docker's built-in service discovery capability. In order to do so, we'll first create a new network:
Users can generate a sample configuration using the `config` subcommand. This will provide the user with a basic config that has a handful of input plugins enabled that collect data from the system. However, the user will still need to configure at least one output before the file is ready for use:
```console
$ docker network create influxdb
$ docker run --rm telegraf telegraf config > telegraf.conf
```
Next, we'll start our InfluxDB container named `influxdb`:
## Supported Plugins Reference
```console
$ docker run -d --name=influxdb \
--net=influxdb \
influxdb
```
The following are links to the various plugins that are available in Telegraf:
The `telegraf.conf` configuration can now resolve the `influxdb` container by name:
- [Input Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#input-plugins)
- [Output Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#output-plugins)
- [Processor Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#processor-plugins)
- [Aggregator Plugins](https://docs.influxdata.com/telegraf/latest/plugins/#aggregator-plugins)
```toml
[[outputs.influxdb]]
urls = ["http://influxdb:8086"]
```
# Examples
Finally, we start our Telegraf container and verify functionality:
```console
$ docker run -d --name=telegraf \
--net=influxdb \
-v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \
telegraf
$ docker logs -f telegraf
```
#### Aerospike
Start an instance of aerospike:
```console
$ docker run -d --name aerospike \
--net=influxdb \
-p 3000-3003:3000-3003 \
aerospike
```
Edit your Telegraf config file and set the correct connection parameter for Aerospike:
```toml
[[inputs.aerospike]]
servers = ["aerospike:3000"]
```
Restart your `telegraf` container to pick up the changes:
```console
$ docker restart telegraf
```
#### Nginx
Create an `nginx_status.conf` configuration file to expose metric data:
```nginx
server {
listen 8090;
location /nginx_status {
stub_status;
access_log off;
}
}
```
Start an Nginx container utilizing it:
```console
$ docker run -d --name=nginx \
--net=influxdb \
-p 8090:8090 -p 8080:80 \
-v $PWD/nginx_status.conf:/etc/nginx/conf.d/nginx_status.conf:ro \
nginx
```
Verify the status page: [http://localhost:8090/nginx_status](http://localhost:8090/nginx_status).
Configure the nginx input plugin in your Telegraf configuration file:
```toml
[[inputs.nginx]]
urls = ["http://nginx:8090/nginx_status"]
```
Restart your `telegraf` container to pick up the changes:
```console
$ docker restart telegraf
```
#### StatsD
Telegraf has a StatsD plugin, allowing Telegraf to run as a StatsD server that metrics can be sent to. In order for this to work, you must first configure the [StatsD plugin](https://github.com/influxdata/telegraf/tree/master/plugins/inputs/statsd) in your config file.
Run Telegraf with the UDP port 8125 exposed:
```console
$ docker run -d --name=telegraf \
--net=influxdb \
-p 8125:8125/udp \
-v $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro \
telegraf
```
Send Mock StatsD data:
```console
$ for i in {1..50}; do echo $i;echo "foo:1|c" | nc -u -w0 127.0.0.1 8125; done
```
Check that the measurement `foo` is added in the DB.
### Supported Plugins Reference
- [Input Plugins](https://docs.influxdata.com/telegraf/latest/plugins/inputs/)
- [Output Plugins](https://docs.influxdata.com/telegraf/latest/plugins/outputs/)
### Monitoring the Docker Engine Host
## Monitoring the Docker Engine Host
One common use case for Telegraf is to monitor the Docker Engine Host from within a container. The recommended technique is to mount the host filesystems into the container and use environment variables to instruct Telegraf where to locate the filesystems.
@ -243,7 +133,7 @@ $ docker run -d --name=telegraf \
telegraf
```
### Monitoring docker containers
## Monitoring docker containers
To monitor other docker containers, you can use the docker plugin and mount the docker socket into the container. An example configuration is below:
@ -264,7 +154,7 @@ $ docker run -d --name=telegraf \
Refer to the docker [plugin documentation](https://github.com/influxdata/telegraf/blob/master/plugins/inputs/docker/README.md) for more information.
### Install Additional Packages
## Install Additional Packages
Some plugins require additional packages to be installed. For example, the `ntpq` plugin requires `ntpq` command. It is recommended to create a custom derivative image to install any needed commands.

View File

@ -26,10 +26,10 @@ WARNING:
- [`11.0.0-M6-jdk17-temurin-jammy`, `11.0.0-jdk17-temurin-jammy`, `11.0-jdk17-temurin-jammy`, `11.0.0-M6-jdk17-temurin`, `11.0.0-jdk17-temurin`, `11.0-jdk17-temurin`, `11.0.0-M6-jdk17`, `11.0.0-jdk17`, `11.0-jdk17`, `11.0.0-M6`, `11.0.0`, `11.0`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jdk17/temurin-jammy/Dockerfile)
- [`11.0.0-M6-jre17-temurin-jammy`, `11.0.0-jre17-temurin-jammy`, `11.0-jre17-temurin-jammy`, `11.0.0-M6-jre17-temurin`, `11.0.0-jre17-temurin`, `11.0-jre17-temurin`, `11.0.0-M6-jre17`, `11.0.0-jre17`, `11.0-jre17`](https://github.com/docker-library/tomcat/blob/67e71978df0c16df45ab4364a10d9239fc7869d3/11.0/jre17/temurin-jammy/Dockerfile)
- [`10.1.8-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.8-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.8-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.8`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/10.1/jdk17/temurin-jammy/Dockerfile)
- [`10.1.8-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.8-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.8-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre17/temurin-jammy/Dockerfile)
- [`10.1.8-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.8-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.8-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/10.1/jdk11/temurin-jammy/Dockerfile)
- [`10.1.8-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.8-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.8-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/fcaa478d6d8ad1ee702efddec8ed8eada283acc5/10.1/jre11/temurin-jammy/Dockerfile)
- [`10.1.9-jdk17-temurin-jammy`, `10.1-jdk17-temurin-jammy`, `10-jdk17-temurin-jammy`, `jdk17-temurin-jammy`, `10.1.9-jdk17-temurin`, `10.1-jdk17-temurin`, `10-jdk17-temurin`, `jdk17-temurin`, `10.1.9-jdk17`, `10.1-jdk17`, `10-jdk17`, `jdk17`, `10.1.9`, `10.1`, `10`, `latest`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jdk17/temurin-jammy/Dockerfile)
- [`10.1.9-jre17-temurin-jammy`, `10.1-jre17-temurin-jammy`, `10-jre17-temurin-jammy`, `jre17-temurin-jammy`, `10.1.9-jre17-temurin`, `10.1-jre17-temurin`, `10-jre17-temurin`, `jre17-temurin`, `10.1.9-jre17`, `10.1-jre17`, `10-jre17`, `jre17`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jre17/temurin-jammy/Dockerfile)
- [`10.1.9-jdk11-temurin-jammy`, `10.1-jdk11-temurin-jammy`, `10-jdk11-temurin-jammy`, `jdk11-temurin-jammy`, `10.1.9-jdk11-temurin`, `10.1-jdk11-temurin`, `10-jdk11-temurin`, `jdk11-temurin`, `10.1.9-jdk11`, `10.1-jdk11`, `10-jdk11`, `jdk11`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jdk11/temurin-jammy/Dockerfile)
- [`10.1.9-jre11-temurin-jammy`, `10.1-jre11-temurin-jammy`, `10-jre11-temurin-jammy`, `jre11-temurin-jammy`, `10.1.9-jre11-temurin`, `10.1-jre11-temurin`, `10-jre11-temurin`, `jre11-temurin`, `10.1.9-jre11`, `10.1-jre11`, `10-jre11`, `jre11`](https://github.com/docker-library/tomcat/blob/1c403acaae52186b5880201c652a49645fd00a23/10.1/jre11/temurin-jammy/Dockerfile)
- [`9.0.75-jdk17-temurin-jammy`, `9.0-jdk17-temurin-jammy`, `9-jdk17-temurin-jammy`, `9.0.75-jdk17-temurin`, `9.0-jdk17-temurin`, `9-jdk17-temurin`, `9.0.75-jdk17`, `9.0-jdk17`, `9-jdk17`, `9.0.75`, `9.0`, `9`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/temurin-jammy/Dockerfile)
- [`9.0.75-jre17-temurin-jammy`, `9.0-jre17-temurin-jammy`, `9-jre17-temurin-jammy`, `9.0.75-jre17-temurin`, `9.0-jre17-temurin`, `9-jre17-temurin`, `9.0.75-jre17`, `9.0-jre17`, `9-jre17`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre17/temurin-jammy/Dockerfile)
- [`9.0.75-jdk17-temurin-focal`, `9.0-jdk17-temurin-focal`, `9-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk17/temurin-focal/Dockerfile)
@ -45,21 +45,21 @@ WARNING:
- [`9.0.75-jdk8-temurin-focal`, `9.0-jdk8-temurin-focal`, `9-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/temurin-focal/Dockerfile)
- [`9.0.75-jre8-temurin-focal`, `9.0-jre8-temurin-focal`, `9-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jre8/temurin-focal/Dockerfile)
- [`9.0.75-jdk8-corretto-al2`, `9.0-jdk8-corretto-al2`, `9-jdk8-corretto-al2`, `9.0.75-jdk8-corretto`, `9.0-jdk8-corretto`, `9-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/87d54ab5dee907d4e0dd02b3df5d8c0542bac1b2/9.0/jdk8/corretto-al2/Dockerfile)
- [`8.5.88-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.88-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.88-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.88`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/temurin-jammy/Dockerfile)
- [`8.5.88-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.88-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.88-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre17/temurin-jammy/Dockerfile)
- [`8.5.88-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/temurin-focal/Dockerfile)
- [`8.5.88-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre17/temurin-focal/Dockerfile)
- [`8.5.88-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.88-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk17/corretto-al2/Dockerfile)
- [`8.5.88-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.88-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.88-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk11/temurin-jammy/Dockerfile)
- [`8.5.88-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.88-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.88-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre11/temurin-jammy/Dockerfile)
- [`8.5.88-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk11/temurin-focal/Dockerfile)
- [`8.5.88-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre11/temurin-focal/Dockerfile)
- [`8.5.88-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.88-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk11/corretto-al2/Dockerfile)
- [`8.5.88-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.88-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.88-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk8/temurin-jammy/Dockerfile)
- [`8.5.88-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.88-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.88-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre8/temurin-jammy/Dockerfile)
- [`8.5.88-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk8/temurin-focal/Dockerfile)
- [`8.5.88-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/44079aa2c56da8b47438f58af9c01ffdda1a8a95/8.5/jre8/temurin-focal/Dockerfile)
- [`8.5.88-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.88-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/fb328ed4e0c36ca21299a8dad9b8dbce20dee236/8.5/jdk8/corretto-al2/Dockerfile)
- [`8.5.89-jdk17-temurin-jammy`, `8.5-jdk17-temurin-jammy`, `8-jdk17-temurin-jammy`, `8.5.89-jdk17-temurin`, `8.5-jdk17-temurin`, `8-jdk17-temurin`, `8.5.89-jdk17`, `8.5-jdk17`, `8-jdk17`, `8.5.89`, `8.5`, `8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/temurin-jammy/Dockerfile)
- [`8.5.89-jre17-temurin-jammy`, `8.5-jre17-temurin-jammy`, `8-jre17-temurin-jammy`, `8.5.89-jre17-temurin`, `8.5-jre17-temurin`, `8-jre17-temurin`, `8.5.89-jre17`, `8.5-jre17`, `8-jre17`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre17/temurin-jammy/Dockerfile)
- [`8.5.89-jdk17-temurin-focal`, `8.5-jdk17-temurin-focal`, `8-jdk17-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/temurin-focal/Dockerfile)
- [`8.5.89-jre17-temurin-focal`, `8.5-jre17-temurin-focal`, `8-jre17-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre17/temurin-focal/Dockerfile)
- [`8.5.89-jdk17-corretto-al2`, `8.5-jdk17-corretto-al2`, `8-jdk17-corretto-al2`, `8.5.89-jdk17-corretto`, `8.5-jdk17-corretto`, `8-jdk17-corretto`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk17/corretto-al2/Dockerfile)
- [`8.5.89-jdk11-temurin-jammy`, `8.5-jdk11-temurin-jammy`, `8-jdk11-temurin-jammy`, `8.5.89-jdk11-temurin`, `8.5-jdk11-temurin`, `8-jdk11-temurin`, `8.5.89-jdk11`, `8.5-jdk11`, `8-jdk11`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk11/temurin-jammy/Dockerfile)
- [`8.5.89-jre11-temurin-jammy`, `8.5-jre11-temurin-jammy`, `8-jre11-temurin-jammy`, `8.5.89-jre11-temurin`, `8.5-jre11-temurin`, `8-jre11-temurin`, `8.5.89-jre11`, `8.5-jre11`, `8-jre11`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre11/temurin-jammy/Dockerfile)
- [`8.5.89-jdk11-temurin-focal`, `8.5-jdk11-temurin-focal`, `8-jdk11-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk11/temurin-focal/Dockerfile)
- [`8.5.89-jre11-temurin-focal`, `8.5-jre11-temurin-focal`, `8-jre11-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre11/temurin-focal/Dockerfile)
- [`8.5.89-jdk11-corretto-al2`, `8.5-jdk11-corretto-al2`, `8-jdk11-corretto-al2`, `8.5.89-jdk11-corretto`, `8.5-jdk11-corretto`, `8-jdk11-corretto`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk11/corretto-al2/Dockerfile)
- [`8.5.89-jdk8-temurin-jammy`, `8.5-jdk8-temurin-jammy`, `8-jdk8-temurin-jammy`, `8.5.89-jdk8-temurin`, `8.5-jdk8-temurin`, `8-jdk8-temurin`, `8.5.89-jdk8`, `8.5-jdk8`, `8-jdk8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk8/temurin-jammy/Dockerfile)
- [`8.5.89-jre8-temurin-jammy`, `8.5-jre8-temurin-jammy`, `8-jre8-temurin-jammy`, `8.5.89-jre8-temurin`, `8.5-jre8-temurin`, `8-jre8-temurin`, `8.5.89-jre8`, `8.5-jre8`, `8-jre8`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre8/temurin-jammy/Dockerfile)
- [`8.5.89-jdk8-temurin-focal`, `8.5-jdk8-temurin-focal`, `8-jdk8-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk8/temurin-focal/Dockerfile)
- [`8.5.89-jre8-temurin-focal`, `8.5-jre8-temurin-focal`, `8-jre8-temurin-focal`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jre8/temurin-focal/Dockerfile)
- [`8.5.89-jdk8-corretto-al2`, `8.5-jdk8-corretto-al2`, `8-jdk8-corretto-al2`, `8.5.89-jdk8-corretto`, `8.5-jdk8-corretto`, `8-jdk8-corretto`](https://github.com/docker-library/tomcat/blob/56238140d77dfa27f93091baf0a94eb0e2d3b37d/8.5/jdk8/corretto-al2/Dockerfile)
# Quick reference (cont.)

View File

@ -24,15 +24,15 @@ WARNING:
# Supported tags and respective `Dockerfile` links
- [`6.2.1-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.1`, `6.2`, `6`, `latest`, `6.2.1-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.1-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.0/apache/Dockerfile)
- [`6.2.1-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.1-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.0/fpm/Dockerfile)
- [`6.2.1-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.1-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.0/fpm-alpine/Dockerfile)
- [`6.2.1-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.1-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.1/apache/Dockerfile)
- [`6.2.1-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.1/fpm/Dockerfile)
- [`6.2.1-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.1/fpm-alpine/Dockerfile)
- [`6.2.1-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.1-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.2/apache/Dockerfile)
- [`6.2.1-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.2/fpm/Dockerfile)
- [`6.2.1-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/9faee1bdd0e10be3b57d3962b2f0cb246d39ecad/latest/php8.2/fpm-alpine/Dockerfile)
- [`6.2.2-apache`, `6.2-apache`, `6-apache`, `apache`, `6.2.2`, `6.2`, `6`, `latest`, `6.2.2-php8.0-apache`, `6.2-php8.0-apache`, `6-php8.0-apache`, `php8.0-apache`, `6.2.2-php8.0`, `6.2-php8.0`, `6-php8.0`, `php8.0`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/apache/Dockerfile)
- [`6.2.2-fpm`, `6.2-fpm`, `6-fpm`, `fpm`, `6.2.2-php8.0-fpm`, `6.2-php8.0-fpm`, `6-php8.0-fpm`, `php8.0-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/fpm/Dockerfile)
- [`6.2.2-fpm-alpine`, `6.2-fpm-alpine`, `6-fpm-alpine`, `fpm-alpine`, `6.2.2-php8.0-fpm-alpine`, `6.2-php8.0-fpm-alpine`, `6-php8.0-fpm-alpine`, `php8.0-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.0/fpm-alpine/Dockerfile)
- [`6.2.2-php8.1-apache`, `6.2-php8.1-apache`, `6-php8.1-apache`, `php8.1-apache`, `6.2.2-php8.1`, `6.2-php8.1`, `6-php8.1`, `php8.1`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/apache/Dockerfile)
- [`6.2.2-php8.1-fpm`, `6.2-php8.1-fpm`, `6-php8.1-fpm`, `php8.1-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/fpm/Dockerfile)
- [`6.2.2-php8.1-fpm-alpine`, `6.2-php8.1-fpm-alpine`, `6-php8.1-fpm-alpine`, `php8.1-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.1/fpm-alpine/Dockerfile)
- [`6.2.2-php8.2-apache`, `6.2-php8.2-apache`, `6-php8.2-apache`, `php8.2-apache`, `6.2.2-php8.2`, `6.2-php8.2`, `6-php8.2`, `php8.2`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/apache/Dockerfile)
- [`6.2.2-php8.2-fpm`, `6.2-php8.2-fpm`, `6-php8.2-fpm`, `php8.2-fpm`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/fpm/Dockerfile)
- [`6.2.2-php8.2-fpm-alpine`, `6.2-php8.2-fpm-alpine`, `6-php8.2-fpm-alpine`, `php8.2-fpm-alpine`](https://github.com/docker-library/wordpress/blob/6fa05d9ba94e7cb48a53ff90878cc6fc777f7986/latest/php8.2/fpm-alpine/Dockerfile)
- [`cli-2.7.1`, `cli-2.7`, `cli-2`, `cli`, `cli-2.7.1-php8.0`, `cli-2.7-php8.0`, `cli-2-php8.0`, `cli-php8.0`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.0/alpine/Dockerfile)
- [`cli-2.7.1-php8.1`, `cli-2.7-php8.1`, `cli-2-php8.1`, `cli-php8.1`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.1/alpine/Dockerfile)
- [`cli-2.7.1-php8.2`, `cli-2.7-php8.2`, `cli-2-php8.2`, `cli-php8.2`](https://github.com/docker-library/wordpress/blob/809519cc86bee0d6c7f2743976a850267983e2c2/cli/php8.2/alpine/Dockerfile)