27 lines
647 B
YAML
27 lines
647 B
YAML
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
services:
|
|
postgresql:
|
|
image: docker.io/bitnami/postgresql:latest
|
|
environment:
|
|
# ALLOW_EMPTY_PASSWORD is recommended only for development.
|
|
- ALLOW_EMPTY_PASSWORD=yes
|
|
- POSTGRESQL_USERNAME=bn_keycloak
|
|
- POSTGRESQL_DATABASE=bitnami_keycloak
|
|
volumes:
|
|
- 'postgresql_data:/bitnami/postgresql'
|
|
|
|
keycloak:
|
|
image: docker.io/bitnami/keycloak:26
|
|
depends_on:
|
|
- postgresql
|
|
ports:
|
|
- "80:8080"
|
|
environment:
|
|
- KC_BOOTSTRAP_ADMIN_PASSWORD=bitnami123
|
|
|
|
volumes:
|
|
postgresql_data:
|
|
driver: local
|