add compose setup for local development

This commit is contained in:
June 2025-10-23 18:15:23 +02:00
commit 71ebb4c696
Signed by: june
SSH key fingerprint: SHA256:o9EAq4Y9N9K0pBQeBTqhSDrND5E7oB+60ZNx0U1yPe0
4 changed files with 13 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
local-dev/

12
compose.yaml Normal file
View file

@ -0,0 +1,12 @@
services:
keycloak:
image: quay.io/keycloak/keycloak:latest
pull_policy: always
command: start-dev
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
ports:
- "8080:8080"
volumes:
- ./local-dev/providers/:/opt/keycloak/providers/

0
local-dev/.gitkeep Normal file
View file

View file