mirror of
https://github.com/bitnami/containers.git
synced 2026-02-25 15:47:42 +08:00
0.7.0-debian-10-r0 release
This commit is contained in:
22
bitnami/apache-exporter/0/debian-10/Dockerfile
Normal file
22
bitnami/apache-exporter/0/debian-10/Dockerfile
Normal file
@@ -0,0 +1,22 @@
|
||||
FROM bitnami/minideb:buster
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl procps sudo unzip wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/apache-exporter-0.7.0-0-linux-amd64-debian-10.tar.gz && \
|
||||
echo "d865d59baab9a1f18121a24eaaa310d58f814f7a8852c47f56c1267dd5203ac7 /tmp/bitnami/pkg/cache/apache-exporter-0.7.0-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/apache-exporter-0.7.0-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/apache-exporter-0.7.0-0-linux-amd64-debian-10.tar.gz
|
||||
RUN apt-get update && apt-get upgrade && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN ln -sf /opt/bitnami/apache-exporter/bin/apache_exporter /bin/apache_exporter
|
||||
|
||||
ENV BITNAMI_APP_NAME="apache-exporter" \
|
||||
BITNAMI_IMAGE_VERSION="0.7.0-debian-10-r0" \
|
||||
PATH="/opt/bitnami/apache-exporter/bin:$PATH"
|
||||
|
||||
EXPOSE 9117
|
||||
|
||||
WORKDIR /opt/bitnami/apache-exporter
|
||||
USER 1001
|
||||
ENTRYPOINT [ "apache_exporter" ]
|
||||
6
bitnami/apache-exporter/0/debian-10/docker-compose.yml
Normal file
6
bitnami/apache-exporter/0/debian-10/docker-compose.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
version: '2'
|
||||
services:
|
||||
apache-exporter:
|
||||
image: bitnami/apache-exporter:0
|
||||
ports:
|
||||
- 9117:9117
|
||||
@@ -39,11 +39,11 @@ $ kubectl apply -f test.yaml
|
||||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
> NOTE: Debian 8 images have been deprecated in favor of Debian 9 images. Bitnami will not longer publish new Docker images based on Debian 8.
|
||||
> NOTE: Debian 9 images have been deprecated in favor of Debian 10 images. Bitnami will not longer publish new Docker images based on Debian 9.
|
||||
|
||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/).
|
||||
|
||||
* [`0-debian-9`, `0.7.0-debian-9-r170`, `0`, `0.7.0`, `0.7.0-r170`, `latest` (0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-apache-exporter/blob/0.7.0-debian-9-r170/0/debian-9/Dockerfile)
|
||||
* [`0-debian-10`, `0.7.0-debian-10-r0`, `0`, `0.7.0`, `0.7.0-r0`, `latest` (0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-apache-exporter/blob/0.7.0-debian-10-r0/0/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/apache-exporter GitHub repo](https://github.com/bitnami/bitnami-docker-apache-exporter).
|
||||
|
||||
@@ -64,7 +64,7 @@ $ docker pull bitnami/apache-exporter:[TAG]
|
||||
If you wish, you can also build the image yourself.
|
||||
|
||||
```bash
|
||||
$ docker build -t bitnami/apache-exporter:latest 'https://github.com/bitnami/bitnami-docker-apache-exporter.git#master:0/debian-9'
|
||||
$ docker build -t bitnami/apache-exporter:latest 'https://github.com/bitnami/bitnami-docker-apache-exporter.git#master:0/debian-10'
|
||||
```
|
||||
|
||||
# Connecting to other containers
|
||||
|
||||
Reference in New Issue
Block a user