Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FAIR Data Austria DB Repository
DBRepo
Merge requests
!324
Feature/grafana
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Feature/grafana
feature/grafana
into
dev
Overview
0
Commits
9
Pipelines
0
Changes
81
Merged
Martin Weise
requested to merge
feature/grafana
into
dev
9 months ago
Overview
0
Commits
9
Pipelines
0
Changes
81
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
4ceeff42
9 commits,
9 months ago
81 files
+
20928
−
172
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
81
.docker/docker-compose.yml
+
46
−
1
View file @ 4ceeff42
Edit in single-file editor
Open in Web IDE
Show full file
@@ -309,6 +309,8 @@ services:
condition
:
service_healthy
dbrepo-broker-service
:
condition
:
service_healthy
dbrepo-dashboard-service
:
condition
:
service_healthy
dbrepo-metadata-service
:
condition
:
service_healthy
dbrepo-search-db
:
@@ -363,7 +365,7 @@ services:
container_name
:
dbrepo-storage-service
hostname
:
storage-service
image
:
docker.io/chrislusf/seaweedfs:3.59
command
:
[
"
server"
,
"
-dir=/data"
,
"
-s3"
,
"
-s3.port=9000"
,
"
-s3.config=/app/s3_config.json"
,
"
-metricsPort=909
1
"
]
command
:
[
"
server"
,
"
-dir=/data"
,
"
-s3"
,
"
-s3.port=9000"
,
"
-s3.config=/app/s3_config.json"
,
"
-metricsPort=909
0
"
]
volumes
:
-
./config/s3_config.json:/app/s3_config.json
-
storage-service-data:/data
@@ -377,6 +379,49 @@ services:
logging
:
driver
:
json-file
dbrepo-metric-db
:
restart
:
"
no"
container_name
:
dbrepo-metric-db
hostname
:
metric-db
image
:
bitnami/prometheus:2.54.1-debian-12-r4
volumes
:
-
./config/prometheus.yml:/etc/prometheus/prometheus.yml
healthcheck
:
test
:
promtool check healthy
interval
:
10s
timeout
:
5s
retries
:
12
logging
:
driver
:
json-file
dbrepo-dashboard-service
:
restart
:
"
no"
container_name
:
dbrepo-dashboard-service
hostname
:
dashboard-service
image
:
docker.io/bitnami/grafana:11.2.0-debian-12-r4
volumes
:
-
./config/dashboards:/app/dashboards
-
./config/provisioning:/etc/grafana/provisioning
-
./config/grafana.ini:/etc/grafana/grafana.ini
-
./config/ldap.toml:/etc/grafana/ldap.toml
environment
:
GF_SERVER_DOMAIN
:
"
dashboard-service"
GF_SERVER_ROOT_URL
:
"
${BASE_URL:-http://localhost}/dashboard/"
GF_SECURITY_DISABLE_INITIAL_ADMIN_CREATION
:
"
true"
LDAP_ADMIN_USERNAME
:
"
${IDENTITY_SERVICE_ADMIN_USERNAME:-admin}"
LDAP_ADMIN_PASSWORD
:
"
${IDENTITY_SERVICE_ADMIN_PASSWORD:-admin}"
LDAP_ROOT
:
"
${IDENTITY_SERVICE_ROOT:-dc=dbrepo,dc=at}"
healthcheck
:
test
:
test -f /opt/bitnami/grafana/tmp/grafana.pid
interval
:
10s
timeout
:
5s
retries
:
12
depends_on
:
dbrepo-metric-db
:
condition
:
service_started
logging
:
driver
:
json-file
dbrepo-storage-service-init
:
restart
:
"
no"
container_name
:
dbrepo-storage-service-init
Loading