mirror of
https://github.com/lukin/keywind.git
synced 2025-01-10 09:56:25 +00:00
22 lines
487 B
YAML
22 lines
487 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
keycloak:
|
|
container_name: keycloak
|
|
image: quay.io/keycloak/keycloak:latest
|
|
volumes:
|
|
- ./theme:/opt/keycloak/themes:ro
|
|
- db-data:/opt/keycloak/data
|
|
environment:
|
|
KEYCLOAK_ADMIN: admin
|
|
KEYCLOAK_ADMIN_PASSWORD: password
|
|
command:
|
|
- start-dev
|
|
- --spi-theme-static-max-age=-1
|
|
- --spi-theme-cache-themes=false
|
|
- --spi-theme-cache-templates=false
|
|
ports:
|
|
- 8080:8080
|
|
|
|
volumes:
|
|
db-data: {}
|