Initial commit

This commit is contained in:
2025-10-12 13:03:56 +03:00
commit 7a2325edcf
12 changed files with 599 additions and 0 deletions

26
compose.yaml Normal file
View File

@@ -0,0 +1,26 @@
services:
keycloak:
build: .
container_name: keycloak
restart: unless-stopped
command: start --optimized
env_file: .env
# mem_limit: 768M
extra_hosts:
- "host.docker.internal:host-gateway"
expose:
- "8080"
ports:
- "127.0.0.1:9000:9000" # Health/Metrics
networks:
- db
- proxify
networks:
db:
name: db
external: true
proxify:
name: proxify
external: true