update messages and add makefile

This commit is contained in:
2023-04-13 19:36:43 +02:00
parent 84a00687a9
commit a7b00928de
3 changed files with 128 additions and 0 deletions

20
makefile Normal file
View File

@ -0,0 +1,20 @@
default: run
run:
@docker run \
-p 8080:8080 \
-v $$(pwd)/hacktheplanet:/opt/keycloak/themes/hacktheplanet \
-e KEYCLOAK_ADMIN=admin \
-e KEYCLOAK_ADMIN_PASSWORD=admin \
--name keycloakdev \
keycloak/keycloak:20.0.1 \
start-dev \
--spi-theme-static-max-age=-1 \
--spi-theme-cache-themes=false \
--spi-theme-cache-templates=false \
shell:
@docker exec -it keycloakdev /bin/bash
stop:
@docker stop keycloakdev && docker rm keycloakdev