mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 08:14:24 +00:00
23 lines
562 B
YAML
23 lines
562 B
YAML
services:
|
|
oidcrp:
|
|
image: golang:1.24-alpine
|
|
container_name: oidcrp
|
|
command: go run main.go
|
|
environment:
|
|
API_URL: 'http://localhost:8080'
|
|
API_DOMAIN: 'localhost:8080'
|
|
PAT_FILE: '/pat/zitadel-admin-sa.pat'
|
|
LOGIN_URL: 'http://localhost:3000'
|
|
ISSUER: 'http://localhost:3000'
|
|
HOST: 'http://localhost'
|
|
PORT: '8000'
|
|
SCOPES: 'openid profile email'
|
|
working_dir: /oidc
|
|
ports:
|
|
- 8000:8000
|
|
volumes:
|
|
- "../pat:/pat"
|
|
- "./:/oidc"
|
|
extra_hosts:
|
|
- "localhost:host-gateway"
|