mirror of
https://github.com/minio/minio.git
synced 2024-12-26 15:15:55 -05:00
002a205c9c
Also update the document with updated rego policy and updated OPA agent REST API. This PR is to fix a regression caused by PR #7637
18 lines
355 B
YAML
18 lines
355 B
YAML
version: '2'
|
|
services:
|
|
opa:
|
|
image: openpolicyagent/opa:0.11.0
|
|
ports:
|
|
- 8181:8181
|
|
command:
|
|
- "run"
|
|
- "--server"
|
|
- "--log-level=debug"
|
|
api_server:
|
|
image: openpolicyagent/demo-restful-api:0.2
|
|
ports:
|
|
- 5000:5000
|
|
environment:
|
|
- OPA_ADDR=http://opa:8181
|
|
- POLICY_PATH=/v1/data/httpapi/authz
|