initial commit

This commit is contained in:
Micael Silva
2025-07-03 22:05:27 -03:00
commit 842cf4b347
3 changed files with 35 additions and 0 deletions

18
docker-compose.yaml Normal file
View File

@@ -0,0 +1,18 @@
services:
keycloak:
image: nt_keycloak
pull_policy: never
container_name: keycloak
command: start --optimized
networks:
- infra
restart: "no" # unless-stopped
# ports:
# - "9090:9090" # Expondo a porta do Keycloak no host
# - "8443:8443"
env_file:
./.env
networks:
infra:
external: true