Skip to content

Instantly share code, notes, and snippets.

@hendisantika
Created October 9, 2024 11:17
Show Gist options
  • Save hendisantika/0e86a6bbd56dbcfed173bc3707eb264b to your computer and use it in GitHub Desktop.
Save hendisantika/0e86a6bbd56dbcfed173bc3707eb264b to your computer and use it in GitHub Desktop.
Keycloak Postgres Docker Compose
services:
another-database-if-you-need: # Example. Remove before using.
image: postgres:17beta3-alpine3.20
environment:
POSTGRES_DB: postgres
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
ports:
- "5432:5432"
networks:
- local_network
keycloak:
image: quay.io/keycloak/keycloak:26.0.0
environment:
KC_HOSTNAME: localhost
KC_HOSTNAME_PORT: 7080
KC_HOSTNAME_STRICT_BACKCHANNEL: "true"
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
KC_HEALTH_ENABLED: "true"
KC_LOG_LEVEL: info
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7080/health/ready"]
interval: 15s
timeout: 2s
retries: 15
command: ["start-dev", "--http-port", "7080", "--https-port", "7443", "--import-realm"]
volumes: # Ignore if you don't have realm-export.json to migrate data
- ../keycloak/realm-export.json:/opt/keycloak/data/import/realm-export.json
ports:
- "7080:7080"
- "7443:7443"
networks:
- local_network
networks:
local_network:
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment