Skip to content

Instantly share code, notes, and snippets.

@thomasdarimont
Created July 6, 2023 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasdarimont/c8cb9f45c1fe6da421659452ba45d7aa to your computer and use it in GitHub Desktop.
Save thomasdarimont/c8cb9f45c1fe6da421659452ba45d7aa to your computer and use it in GitHub Desktop.
Keycloak Nightly with Podman
podman run -it \
  -p 8080:8080 \
  -p 8443:8443 \
  -p 8787:8787 \
  -e KEYCLOAK_ADMIN=admin \
  -e KEYCLOAK_ADMIN_PASSWORD=admin \
  -e DEBUG=true \
  -e DEBUG_PORT='0.0.0.0:8787' \
  quay.io/keycloak/keycloak:nightly \
  --verbose \
  start-dev \
  --cache=local \
  --metrics-enabled=true \
  --http-enabled=true \
  --http-relative-path=auth \
  --hostname-strict=false \
  --hostname-strict-https=false \
  --spi-events-listener-jboss-logging-success-level=info \
  --spi-events-listener-jboss-logging-error-level=warn \
  --features=preview,account3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment