Files
certifai/docker-compose.yml
Sharang Parnerkar 1f9629f111 feat(auth): add custom Keycloak login theme matching dashboard
Branded Keycloak login page with CERTifAI dark theme: indigo/teal
color palette, Inter + Space Grotesk fonts, animated background
gradients, card glow, logo float, and button shimmer effects.
Overrides PatternFly v4 defaults including autofill color fix.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 18:15:37 +01:00

43 lines
1.0 KiB
YAML

version: '3.8'
services:
keycloak:
image: quay.io/keycloak/keycloak:26.0
container_name: certifai-keycloak
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
KC_DB: dev-mem
ports:
- "8080:8080"
command:
- start-dev
- --import-realm
volumes:
- ./keycloak/realm-export.json:/opt/keycloak/data/import/realm-export.json:ro
- ./keycloak/themes/certifai:/opt/keycloak/themes/certifai:ro
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health/ready"]
interval: 10s
timeout: 5s
retries: 5
mongo:
image: mongo:latest
restart: unless-stopped
ports:
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
searxng:
image: searxng/searxng:latest
container_name: certifai-searxng
restart: unless-stopped
ports:
- "8888:8080"
environment:
- SEARXNG_BASE_URL=http://localhost:8888
volumes:
- ./searxng:/etc/searxng:rw