Skip to content
Snippets Groups Projects
Verified Commit 8734a552 authored by Martin Weise's avatar Martin Weise
Browse files
parent 4cb4fd5e
No related branches found
No related tags found
4 merge requests!422Fixed a library issue where the value could not be empty,!421Fixed a library issue where the value could not be empty,!419Fixed a library issue where the value could not be empty,!412Fixed a library issue where the value could not be empty
APP_VERSION=1.8
MARIADB_VERSION=11.3.2 MARIADB_VERSION=11.3.2
POSTGRES_VERSION=17.0.0 POSTGRES_VERSION=17.0.0
KEYCLOAK_VERSION=26.2.2 KEYCLOAK_VERSION=26.2.2
...@@ -7,3 +8,4 @@ NGINX_VERSION=1.27.3-alpine3.20-slim ...@@ -7,3 +8,4 @@ NGINX_VERSION=1.27.3-alpine3.20-slim
OPENLDAP_VERSION=2.6.8 OPENLDAP_VERSION=2.6.8
SEAWEEDFS_VERSION=3.71.0 SEAWEEDFS_VERSION=3.71.0
PROMETHEUS_VERSION=2.54.1 PROMETHEUS_VERSION=2.54.1
MYSQLD_EXPORTER_VERSION=0.15.1
...@@ -99,7 +99,7 @@ services: ...@@ -99,7 +99,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-metadata-db-metrics container_name: dbrepo-metadata-db-metrics
hostname: metadata-db-metrics hostname: metadata-db-metrics
image: docker.io/bitnami/mysqld-exporter:0.15.1 image: docker.io/bitnami/mysqld-exporter:${MYSQLD_EXPORTER_VERSION}
command: command:
- --mysqld.address=metadata-db:3306 - --mysqld.address=metadata-db:3306
- --config.my-cnf=/.my.cnf - --config.my-cnf=/.my.cnf
...@@ -144,7 +144,7 @@ services: ...@@ -144,7 +144,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-data-db-metrics container_name: dbrepo-data-db-metrics
hostname: data-db-metrics hostname: data-db-metrics
image: docker.io/bitnami/mysqld-exporter:0.15.1 image: docker.io/bitnami/mysqld-exporter:${MYSQLD_EXPORTER_VERSION}
command: command:
- --mysqld.address=data-db:3306 - --mysqld.address=data-db:3306
- --config.my-cnf=/.my.cnf - --config.my-cnf=/.my.cnf
...@@ -245,7 +245,7 @@ services: ...@@ -245,7 +245,7 @@ services:
init: true init: true
restart: "no" restart: "no"
container_name: dbrepo-auth-service-init container_name: dbrepo-auth-service-init
image: registry.datalab.tuwien.ac.at/dbrepo/auth-service-init:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/auth-service-init:${DBREPO_VERSION}
environment: environment:
AUTH_SERVICE_ENDPOINT: ${AUTH_SERVICE_ENDPOINT:-http://auth-service:8080} AUTH_SERVICE_ENDPOINT: ${AUTH_SERVICE_ENDPOINT:-http://auth-service:8080}
METADATA_DB: "${METADATA_DB:-dbrepo}" METADATA_DB: "${METADATA_DB:-dbrepo}"
...@@ -270,7 +270,7 @@ services: ...@@ -270,7 +270,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-metadata-service container_name: dbrepo-metadata-service
hostname: metadata-service hostname: metadata-service
image: registry.datalab.tuwien.ac.at/dbrepo/metadata-service:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/metadata-service:${DBREPO_VERSION}
environment: environment:
ADMIN_EMAIL: "${ADMIN_EMAIL:-noreply@localhost}" ADMIN_EMAIL: "${ADMIN_EMAIL:-noreply@localhost}"
ANALYSE_SERVICE_ENDPOINT: "${ANALYSE_SERVICE_ENDPOINT:-http://analyse-service:8080}" ANALYSE_SERVICE_ENDPOINT: "${ANALYSE_SERVICE_ENDPOINT:-http://analyse-service:8080}"
...@@ -334,7 +334,7 @@ services: ...@@ -334,7 +334,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-analyse-service container_name: dbrepo-analyse-service
hostname: analyse-service hostname: analyse-service
image: registry.datalab.tuwien.ac.at/dbrepo/analyse-service:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/analyse-service:${DBREPO_VERSION}
environment: environment:
AUTH_SERVICE_CLIENT: ${AUTH_SERVICE_CLIENT:-dbrepo-client} AUTH_SERVICE_CLIENT: ${AUTH_SERVICE_CLIENT:-dbrepo-client}
AUTH_SERVICE_CLIENT_SECRET: ${AUTH_SERVICE_CLIENT:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG} AUTH_SERVICE_CLIENT_SECRET: ${AUTH_SERVICE_CLIENT:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG}
...@@ -404,7 +404,7 @@ services: ...@@ -404,7 +404,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-search-service container_name: dbrepo-search-service
hostname: search-service hostname: search-service
image: registry.datalab.tuwien.ac.at/dbrepo/search-service:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/search-service:${DBREPO_VERSION}
environment: environment:
AUTH_SERVICE_CLIENT: ${AUTH_SERVICE_CLIENT:-dbrepo-client} AUTH_SERVICE_CLIENT: ${AUTH_SERVICE_CLIENT:-dbrepo-client}
AUTH_SERVICE_CLIENT_SECRET: ${AUTH_SERVICE_CLIENT_SECRET:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG} AUTH_SERVICE_CLIENT_SECRET: ${AUTH_SERVICE_CLIENT_SECRET:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG}
...@@ -428,7 +428,7 @@ services: ...@@ -428,7 +428,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-ui container_name: dbrepo-ui
hostname: ui hostname: ui
image: registry.datalab.tuwien.ac.at/dbrepo/ui:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/ui:${DBREPO_VERSION}
environment: environment:
NUXT_PUBLIC_API_CLIENT: "${BASE_URL:-http://localhost}" NUXT_PUBLIC_API_CLIENT: "${BASE_URL:-http://localhost}"
NUXT_PUBLIC_API_SERVER: "${BASE_URL:-http://gateway-service}" NUXT_PUBLIC_API_SERVER: "${BASE_URL:-http://gateway-service}"
...@@ -515,7 +515,7 @@ services: ...@@ -515,7 +515,7 @@ services:
init: true init: true
container_name: dbrepo-search-service-init container_name: dbrepo-search-service-init
hostname: search-service-init hostname: search-service-init
image: registry.datalab.tuwien.ac.at/dbrepo/search-service-init:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/search-service-init:${DBREPO_VERSION}
environment: environment:
LOG_LEVEL: ${LOG_LEVEL:-info} LOG_LEVEL: ${LOG_LEVEL:-info}
METADATA_SERVICE_ENDPOINT: ${METADATA_SERVICE_ENDPOINT:-http://metadata-service:8080} METADATA_SERVICE_ENDPOINT: ${METADATA_SERVICE_ENDPOINT:-http://metadata-service:8080}
...@@ -538,7 +538,7 @@ services: ...@@ -538,7 +538,7 @@ services:
init: true init: true
container_name: dbrepo-dashboard-service-init container_name: dbrepo-dashboard-service-init
hostname: search-dashboard-init hostname: search-dashboard-init
image: registry.datalab.tuwien.ac.at/dbrepo/dashboard-service-init:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/dashboard-service-init:${DBREPO_VERSION}
environment: environment:
LOG_LEVEL: ${LOG_LEVEL:-info} LOG_LEVEL: ${LOG_LEVEL:-info}
DASHBOARD_UI_ENDPOINT: "${DASHBOARD_UI_ENDPOINT:-http://dashboard-ui:3000}" DASHBOARD_UI_ENDPOINT: "${DASHBOARD_UI_ENDPOINT:-http://dashboard-ui:3000}"
...@@ -595,7 +595,7 @@ services: ...@@ -595,7 +595,7 @@ services:
init: true init: true
container_name: dbrepo-storage-service-init container_name: dbrepo-storage-service-init
hostname: storage-service-init hostname: storage-service-init
image: registry.datalab.tuwien.ac.at/dbrepo/storage-service-init:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/storage-service-init:${DBREPO_VERSION}
environment: environment:
S3_ACCESS_KEY_ID: ${S3_ACCESS_KEY_ID:-seaweedfsadmin} S3_ACCESS_KEY_ID: ${S3_ACCESS_KEY_ID:-seaweedfsadmin}
S3_BUCKET: "${S3_BUCKET:-dbrepo}" S3_BUCKET: "${S3_BUCKET:-dbrepo}"
...@@ -613,7 +613,7 @@ services: ...@@ -613,7 +613,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-data-service container_name: dbrepo-data-service
hostname: data-service hostname: data-service
image: registry.datalab.tuwien.ac.at/dbrepo/data-service:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/data-service:${DBREPO_VERSION}
environment: environment:
AUTH_SERVICE_CLIENT: "${AUTH_SERVICE_CLIENT:-dbrepo-client}" AUTH_SERVICE_CLIENT: "${AUTH_SERVICE_CLIENT:-dbrepo-client}"
AUTH_SERVICE_CLIENT_SECRET: "${AUTH_SERVICE_CLIENT:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG}" AUTH_SERVICE_CLIENT_SECRET: "${AUTH_SERVICE_CLIENT:-MUwRc7yfXSJwX8AdRMWaQC3Nep1VjwgG}"
...@@ -695,7 +695,7 @@ services: ...@@ -695,7 +695,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-dashboard-service container_name: dbrepo-dashboard-service
hostname: dashboard-service hostname: dashboard-service
image: registry.datalab.tuwien.ac.at/dbrepo/dashboard-service:1.8.2 image: registry.datalab.tuwien.ac.at/dbrepo/dashboard-service:${DBREPO_VERSION}
ports: ports:
- "4070:8080" - "4070:8080"
environment: environment:
......
...@@ -7,3 +7,4 @@ NGINX_VERSION=1.27.3-alpine3.20-slim ...@@ -7,3 +7,4 @@ NGINX_VERSION=1.27.3-alpine3.20-slim
OPENLDAP_VERSION=2.6.8 OPENLDAP_VERSION=2.6.8
SEAWEEDFS_VERSION=3.71.0 SEAWEEDFS_VERSION=3.71.0
PROMETHEUS_VERSION=2.54.1 PROMETHEUS_VERSION=2.54.1
MYSQLD_EXPORTER_VERSION=0.15.1
\ No newline at end of file
This diff is collapsed.
global: global:
scrape_interval: 1m scrape_interval: 1m
scrape_timeout: 10s
rule_files: [] rule_files: []
......
...@@ -99,7 +99,7 @@ services: ...@@ -99,7 +99,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-metadata-db-metrics container_name: dbrepo-metadata-db-metrics
hostname: metadata-db-metrics hostname: metadata-db-metrics
image: docker.io/bitnami/mysqld-exporter:0.15.1 image: docker.io/bitnami/mysqld-exporter:${MYSQLD_EXPORTER_VERSION}
command: command:
- --mysqld.address=metadata-db:3306 - --mysqld.address=metadata-db:3306
- --config.my-cnf=/.my.cnf - --config.my-cnf=/.my.cnf
...@@ -144,7 +144,7 @@ services: ...@@ -144,7 +144,7 @@ services:
restart: "no" restart: "no"
container_name: dbrepo-data-db-metrics container_name: dbrepo-data-db-metrics
hostname: data-db-metrics hostname: data-db-metrics
image: docker.io/bitnami/mysqld-exporter:0.15.1 image: docker.io/bitnami/mysqld-exporter:${MYSQLD_EXPORTER_VERSION}
command: command:
- --mysqld.address=data-db:3306 - --mysqld.address=data-db:3306
- --config.my-cnf=/.my.cnf - --config.my-cnf=/.my.cnf
......
No preview for this file type
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment