Skip to content
Snippets Groups Projects
Verified Commit 70ec098c authored by Martin Weise's avatar Martin Weise
Browse files

Fixed the docker-compose for release

parent f50b5ca9
No related branches found
No related tags found
No related merge requests found
...@@ -80,12 +80,12 @@ services: ...@@ -80,12 +80,12 @@ services:
container_name: dbrepo-auth-service container_name: dbrepo-auth-service
hostname: auth-service hostname: auth-service
image: bitnami/keycloak:26.0.0-debian-12-r1 image: bitnami/keycloak:26.0.0-debian-12-r1
ports:
- "8080:8080"
volumes: volumes:
- ./config/import-realms.sh:/docker-entrypoint-initdb.d/import-realms.sh - ./config/import-realms.sh:/docker-entrypoint-initdb.d/import-realms.sh
- ./config/master-realm.json:/opt/keycloak/data/import/master-realm.json - ./config/master-realm.json:/opt/keycloak/data/import/master-realm.json
- ./config/dbrepo-realm.json:/opt/keycloak/data/import/dbrepo-realm.json - ./config/dbrepo-realm.json:/opt/keycloak/data/import/dbrepo-realm.json
ports:
- "8080:8080"
environment: environment:
KEYCLOAK_ENABLE_HTTPS: "false" KEYCLOAK_ENABLE_HTTPS: "false"
KEYCLOAK_ENABLE_STATISTICS: "true" KEYCLOAK_ENABLE_STATISTICS: "true"
...@@ -299,8 +299,7 @@ services: ...@@ -299,8 +299,7 @@ services:
hostname: gateway-service hostname: gateway-service
image: docker.io/nginx:1.27.0-alpine3.19-slim image: docker.io/nginx:1.27.0-alpine3.19-slim
ports: ports:
- "80:80" - "80:8080"
- "443:443"
volumes: volumes:
- ./config/dbrepo.conf:/etc/nginx/conf.d/default.conf - ./config/dbrepo.conf:/etc/nginx/conf.d/default.conf
depends_on: depends_on:
...@@ -407,7 +406,6 @@ services: ...@@ -407,7 +406,6 @@ services:
- dashboard-service-data:/opt/bitnami/grafana/data - dashboard-service-data:/opt/bitnami/grafana/data
environment: environment:
GF_SERVER_DOMAIN: "dashboard-service" GF_SERVER_DOMAIN: "dashboard-service"
GF_SERVER_ROOT_URL: "${BASE_URL:-http://localhost}"
GF_SECURITY_DISABLE_INITIAL_ADMIN_CREATION: "true" GF_SECURITY_DISABLE_INITIAL_ADMIN_CREATION: "true"
LDAP_ADMIN_USERNAME: "${IDENTITY_SERVICE_ADMIN_USERNAME:-admin}" LDAP_ADMIN_USERNAME: "${IDENTITY_SERVICE_ADMIN_USERNAME:-admin}"
LDAP_ADMIN_PASSWORD: "${IDENTITY_SERVICE_ADMIN_PASSWORD:-admin}" LDAP_ADMIN_PASSWORD: "${IDENTITY_SERVICE_ADMIN_PASSWORD:-admin}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment