19 lines
501 B
YAML
19 lines
501 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
gatekeeper:
|
|
image: gatekeeper
|
|
build:
|
|
context: keycloak-gatekeeper/
|
|
container_name: gatekeeper
|
|
restart: always
|
|
ports:
|
|
- 8880:8880
|
|
depends_on:
|
|
- sshwifty
|
|
command:
|
|
- "--discovery-url=https://<MON_KEYCLOAK>/auth/realms/<MON_REALM>/.well-known/openid-configuration"
|
|
- "--client-id=<CLIENT_ID>"
|
|
- "--client-secret=<CLIENT_SECRET>"
|
|
- "--listen=0.0.0.0:8880"
|
|
- "--upstream-url=http://<MON_SERVICE>:<PORT>" |