mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 08:14:24 +00:00
21 lines
463 B
YAML
21 lines
463 B
YAML
services:
|
|
oidcop:
|
|
image: golang:1.24-alpine
|
|
container_name: oidcop
|
|
command: go run main.go
|
|
environment:
|
|
API_URL: 'http://localhost:8080'
|
|
API_DOMAIN: 'localhost:8080'
|
|
PAT_FILE: '/pat/zitadel-admin-sa.pat'
|
|
SCHEMA: 'http'
|
|
HOST: 'localhost'
|
|
PORT: "8004"
|
|
working_dir: /oidc
|
|
ports:
|
|
- 8004:8004
|
|
volumes:
|
|
- "../../pat:/pat"
|
|
- "./:/oidc"
|
|
extra_hosts:
|
|
- "localhost:host-gateway"
|