mirror of
https://github.com/bitnami/containers.git
synced 2026-03-16 14:57:44 +08:00
1.2.1-ol-7-r0 release
Update fluentd to 1.2.1
This commit is contained in:
27
bitnami/fluentd/1/ol-7/Dockerfile
Normal file
27
bitnami/fluentd/1/ol-7/Dockerfile
Normal file
@@ -0,0 +1,27 @@
|
||||
FROM bitnami/ruby:2.5-ol-7 as buildenv
|
||||
|
||||
RUN install_packages ca-certificates glibc nss-softokn-freebl wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/fluentd-1.2.1-0-linux-x86_64-ol-7.tar.gz && \
|
||||
echo "9bdb083ca9d5ad9bd856fab536a76ec1364bad4d364c5d53f59f694f974ad3a9 /tmp/bitnami/pkg/cache/fluentd-1.2.1-0-linux-x86_64-ol-7.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/fluentd-1.2.1-0-linux-x86_64-ol-7.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/fluentd-1.2.1-0-linux-x86_64-ol-7.tar.gz
|
||||
|
||||
##################
|
||||
|
||||
FROM bitnami/ruby:2.5-ol-7
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
COPY --from=buildenv /opt/bitnami/fluentd /opt/bitnami/fluentd
|
||||
ENV BITNAMI_APP_NAME="fluentd" \
|
||||
BITNAMI_IMAGE_VERSION="1.2.1-ol-7-r0" \
|
||||
GEM_HOME="/opt/bitnami/fluentd" \
|
||||
PATH="/opt/bitnami/fluentd/bin:$PATH"
|
||||
|
||||
RUN install_packages ca-certificates libjemalloc-dev
|
||||
RUN chmod g+rwX /opt/bitnami/fluentd/logs
|
||||
|
||||
EXPOSE 24224 5140
|
||||
|
||||
WORKDIR /opt/bitnami/fluentd
|
||||
USER 1001
|
||||
CMD ["fluentd","-c","/opt/bitnami/fluentd/conf/fluentd.conf","-p","/opt/bitnami/fluentd/plugins"]
|
||||
13
bitnami/fluentd/1/ol-7/docker-compose.yml
Normal file
13
bitnami/fluentd/1/ol-7/docker-compose.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
fluentd:
|
||||
image: bitnami/fluentd:1-ol-7
|
||||
ports:
|
||||
- '24224:24224'
|
||||
- '5140:5140'
|
||||
volumes:
|
||||
- fluentd_data:/bitnami
|
||||
volumes:
|
||||
fluentd_data:
|
||||
driver: local
|
||||
@@ -19,6 +19,13 @@ $ docker run --name fluentd bitnami/fluentd:latest
|
||||
* Bitnami images are built on CircleCI and automatically pushed to the Docker Hub.
|
||||
* All our images are based on [minideb](https://github.com/bitnami/minideb) a minimalist Debian based container image which gives you a small base container image and the familiarity of a leading linux distribution.
|
||||
|
||||
# Supported tags and respective `Dockerfile` links
|
||||
|
||||
* [`1`, `1.2.1-r12`, `latest` (1/Dockerfile)](https://github.com/bitnami/bitnami-docker-fluentd/blob/1.2.1-r12/1/Dockerfile)
|
||||
* [`1-ol-7`, `1.2.1-ol-7-r0` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-fluentd/blob/1.2.1-ol-7-r0/1/ol-7/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/fluentd GitHub repo](https://github.com/bitnami/bitnami-docker-fluentd).
|
||||
|
||||
# Get this image
|
||||
|
||||
The recommended way to get the Bitnami Fluentd Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/fluentd).
|
||||
|
||||
@@ -7,6 +7,7 @@ jobs:
|
||||
environment:
|
||||
RELEASE_SERIES_LIST: "1"
|
||||
LATEST_STABLE: "1"
|
||||
DISTRIBUTIONS_LIST: "debian-8,ol-7"
|
||||
IMAGE_NAME: fluentd
|
||||
DOCKER_PROJECT: bitnami
|
||||
QUAY_PROJECT: bitnami
|
||||
@@ -61,4 +62,4 @@ workflows:
|
||||
branches:
|
||||
only: /.*/
|
||||
tags:
|
||||
only: /^[0-9].*-r[0-9]+$/
|
||||
only: /^.*(?<!-rhel-7)-r[0-9]+$/
|
||||
|
||||
Reference in New Issue
Block a user