1
0
mirror of https://github.com/coltoneshaw/CS-Repro-Mattermost.git synced 2025-12-23 10:01:30 +01:00

working repro, still building

This commit is contained in:
coltoneshaw
2022-10-06 15:35:43 -04:00
parent 5d43dd5c6e
commit 7c51d94cda
22 changed files with 5911 additions and 1 deletions

40
keycloak.yml Normal file
View File

@@ -0,0 +1,40 @@
version: '3'
volumes:
postgres_data:
driver: local
services:
# postgres:
# image: postgres
# volumes:
# - postgres_data:/var/lib/postgresql/data
# environment:
# POSTGRES_DB: keycloak
# POSTGRES_USER: keycloak
# POSTGRES_PASSWORD: password
keycloak:
image: quay.io/keycloak/keycloak:latest
environment:
# KC_DB_VENDOR: POSTGRES
# DB_ADDR: postgres
# DB_DATABASE: keycloak
# : keycloak
# DB_SCHEMA: public
# DB_PASSWORD: password
# KC_DB_URL: 'jdbc:postgresql://postgres/keycloak'
# KC_DB_USERNAME: keycloak
# KC_DB: postgres
# KC_DB_PASSWORD: password
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: Pa55w0rd
# KC_HOSTNAME: keycloak
# KC_HOSTNAME_PORT
# volumes:
# - ./volumes/keycloak:/opt/jboss/keycloak/standalone/data/
ports:
- 8080:8080
depends_on:
postgres:
condition: service_healthy