[bitnami/grafana-mimir] Release 2.5.0-debian-11-r0 (#17888)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2022-12-23 10:38:42 +01:00
committed by GitHub
parent b37925e5a4
commit aff5f25479
9 changed files with 266 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="2.5.0-debian-11-r0" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/grafana-mimir" \
org.opencontainers.image.title="grafana-mimir" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="2.5.0"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
OS_FLAVOUR="debian-11" \
OS_NAME="linux"
COPY prebuildfs /
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Install required system packages and dependencies
RUN install_packages ca-certificates curl procps
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"grafana-mimir-2.5.0-0-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \
fi && \
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
done
RUN apt-get autoremove --purge -y curl && \
apt-get update && apt-get upgrade -y && \
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
RUN chmod g+rwX /opt/bitnami
RUN mkdir -p /bitnami/grafana-mimir/data /bitnami/grafana-mimir/mimir && chmod -R g+rwX /bitnami/grafana-mimir && ln -s /bitnami/grafana-mimir/mimir /mimir && ln -s /bitnami/grafana-mimir/data /data
ENV APP_VERSION="2.5.0" \
BITNAMI_APP_NAME="grafana-mimir" \
PATH="/opt/bitnami/grafana-mimir/bin:$PATH"
EXPOSE 8080 9095
WORKDIR /opt/bitnami/grafana-mimir
USER 1001
ENTRYPOINT [ "mimir" ]
CMD [ "-config.file=/bitnami/grafana-mimir/conf/mimir.yaml" ]

View File

@@ -0,0 +1,4 @@
version: '2'
services:
grafana-mimir:
image: docker.io/bitnami/grafana-mimir:2

View File

@@ -0,0 +1,54 @@
# This is a configuration to deploy run Grafana Mimir as a monolith and with local filesystem storage
# Do not use this configuration in production.
# It is for demonstration purposes only.
multitenancy_enabled: false
activity_tracker:
filepath: /mimir/metrics-activity.log
alertmanager:
data_dir: /mimir/data-alertmanager
blocks_storage:
backend: filesystem
bucket_store:
sync_dir: /mimir/tsdb-sync
filesystem:
dir: /data/blocks
tsdb:
dir: /data/tsdb
compactor:
data_dir: /mimir/compactor
sharding_ring:
kvstore:
store: memberlist
distributor:
ring:
instance_addr: 127.0.0.1
kvstore:
store: memberlist
ingester:
ring:
instance_addr: 127.0.0.1
kvstore:
store: memberlist
replication_factor: 1
ruler_storage:
backend: filesystem
filesystem:
dir: /data/ruler
ruler:
rule_path: /mimir/data-ruler
server:
http_listen_port: 9009
log_level: error
store_gateway:
sharding_ring:
replication_factor: 1

View File

@@ -0,0 +1,9 @@
{
"grafana-mimir": {
"arch": "amd64",
"digest": "c58937a7e312ab18589b1f601e06580e6d53103068b229d78a8f46219fe19620",
"distro": "debian-11",
"type": "NAMI",
"version": "2.5.0-0"
}
}

View File

@@ -0,0 +1,3 @@
Bitnami containers ship with software bundles. You can find the licenses under:
/opt/bitnami/nami/COPYING
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt

View File

@@ -0,0 +1,25 @@
#!/bin/sh
set -eu
n=0
max=2
export DEBIAN_FRONTEND=noninteractive
until [ $n -gt $max ]; do
set +e
(
apt-get update -qq &&
apt-get install -y --no-install-recommends "$@"
)
CODE=$?
set -e
if [ $CODE -eq 0 ]; then
break
fi
if [ $n -eq $max ]; then
exit $CODE
fi
echo "apt failed, retrying"
n=$(($n + 1))
done
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives

View File

@@ -0,0 +1,5 @@
rolling-tags:
- "2"
- "2-debian-11"
- "2.5.0"
- "latest"

View File

@@ -0,0 +1,112 @@
# Grafana Mimir packaged by Bitnami
## What is Grafana Mimir?
> Grafana Mimir is an open source, horizontally scalable, highly available, multi-tenant, long-term storage for Prometheus.
[Overview of Grafana Mimir](https://grafana.com/oss/mimir/)
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
## TL;DR
```console
$ docker run --name grafana-mimir bitnami/grafana-mimir:latest
```
## Why use Bitnami Images?
* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems.
* With Bitnami images the latest bug fixes and features are available as soon as possible.
* Bitnami containers, virtual machines and cloud images use the same components and configuration approach - making it easy to switch between formats based on your project needs.
* 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.
* All Bitnami images available in Docker Hub are signed with [Docker Content Trust (DCT)](https://docs.docker.com/engine/security/trust/content_trust/). You can use `DOCKER_CONTENT_TRUST=1` to verify the integrity of the images.
* Bitnami container images are released on a regular basis with the latest distribution packages available.
## Supported tags and respective `Dockerfile` links
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
You can see the equivalence between the different tags by taking a look at the `tags-info.yaml` file present in the branch folder, i.e `bitnami/ASSET/BRANCH/DISTRO/tags-info.yaml`.
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
## Get this image
The recommended way to get the Bitnami grafana-mimir Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/grafana-mimir).
```console
$ docker pull bitnami/grafana-mimir: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/grafana-mimir/tags/) in the Docker Hub Registry.
```console
$ docker pull bitnami/grafana-mimir:[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 .
```
## Why use a non-root container?
Non-root container images add an extra layer of security and are generally recommended for production environments. However, because they run as a non-root user, privileged tasks are typically off-limits. Learn more about non-root containers [in our docs](https://docs.bitnami.com/tutorials/work-with-non-root-containers/).
## Configuration
### Running commands
To run commands inside this container you can use `docker run`, for example to execute `grafana-mimir --version` you can follow the example below:
```console
$ docker run --rm --name grafana-mimir bitnami/grafana-mimir:latest -- --version
```
In order for the container to work, you need to mount your custom `mimir.yaml` file in `/bitnami/grafana-mimir/conf/`. The following example runs Grafana Mimir with a custom configuration file:
```console
$ docker run --rm --name grafana-mimir -v /path/to/mimir.yaml:/bitnami/grafana-mimir/conf/mimir.yaml bitnami/grafana-mimir:latest
```
Using docker-compose:
```yaml
version: '2'
services:
grafana-mimir:
image: grafana-mimir
volumes:
- /path/to/mimir.yaml:/bitnami/grafana-mimir/conf/mimir.yaml
```
Check the [official Grafana Mimir documentation](https://grafana.com/docs/mimir/latest/) to understand the possible configurations.
## Contributing
We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues) or submitting a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.
## Issues
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/containers/issues/new/choose). For us to provide better support, be sure to fill the issue template.
## License
Copyright &copy; 2022 Bitnami
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
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@@ -0,0 +1,4 @@
version: '2'
services:
grafana-mimir:
image: docker.io/bitnami/grafana-mimir:2