49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
services:
|
|
postgres:
|
|
build:
|
|
context: .
|
|
dockerfile: ./postgres.DOCKERFILE
|
|
container_name: dev-postgres
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: devpassword
|
|
POSTGRES_INITDB_ARGS: "--locale=de_DE.utf8 --lc-collate=de_DE.utf8 --lc-ctype=de_DE.utf8"
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql
|
|
- ./postgres/initdb:/docker-entrypoint-initdb.d/
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
keycloak:
|
|
image: quay.io/keycloak/keycloak:26.4
|
|
container_name: dev-keycloak
|
|
command:
|
|
- start-dev
|
|
- --import-realm
|
|
environment:
|
|
KC_HOSTNAME: localhost
|
|
KC_DB: postgres
|
|
KC_DB_URL: jdbc:postgresql://postgres:5432/keycloak
|
|
KC_DB_USERNAME: keycloak
|
|
KC_DB_PASSWORD: devpassword
|
|
KC_BOOTSTRAP_ADMIN_USERNAME: admin
|
|
KC_BOOTSTRAP_ADMIN_PASSWORD: admin
|
|
ports:
|
|
- "8080:8080"
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
volumes:
|
|
- ./keycloak/realm-export:/opt/keycloak/data/import
|
|
- keycloak_data:/opt/keycloak/data
|
|
|
|
volumes:
|
|
postgres_data:
|
|
keycloak_data:
|