forked from grafana/grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'grafana/master' into field-thresholds
* grafana/master: chore: remove x character in explore Dashboard: show refresh button in kiosk mode (grafana#17032) Devenv: Updated gauge test dashboard Chore: reintroduce gosec (grafana#17021) Gauge: tweaks to background color and height usage (grafana#17019) Feature: provide multildap server configuration (grafana#16914) (feat/explore): Support for new LogQL filtering syntax (grafana#16674) fix(explore): Prevent double querying for Prometheus and Loki (grafana#17004) Chore: No implict any fixes (grafana#17020) move log package to /infra (grafana#17023) Chore: Lowered implicit anys limit to 5386 Chore: Updated snapshot Select: Fixed isOpen issue Chore: Typescript no-implicit any fixes progress (grafana#17018) GraphPanel: show results for all SeriesData (grafana#16966) Fix: Wrap value of multi variable in array when coming from URL (grafana#16992)
- Loading branch information
Showing
256 changed files
with
1,717 additions
and
1,002 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
devenv/docker/blocks/multiple-openldap/admins-ldap-server/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Fork of https://github.com/dinkel/docker-openldap | ||
|
||
FROM debian:jessie | ||
|
||
LABEL maintainer="Grafana team <hello@grafana.com>" | ||
|
||
ENV OPENLDAP_VERSION 2.4.40 | ||
|
||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ | ||
slapd=${OPENLDAP_VERSION}* \ | ||
ldap-utils && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN mv /etc/ldap /etc/ldap.dist | ||
|
||
EXPOSE 389 | ||
|
||
VOLUME ["/etc/ldap", "/var/lib/ldap"] | ||
|
||
COPY modules/ /etc/ldap.dist/modules | ||
COPY prepopulate/ /etc/ldap.dist/prepopulate | ||
|
||
COPY ../entrypoint.sh /entrypoint.sh | ||
COPY ../prepopulate.sh /prepopulate.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] | ||
|
||
CMD ["slapd", "-d", "32768", "-u", "openldap", "-g", "openldap"] |
Oops, something went wrong.