forked from oomol-lab/open-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
25 lines (24 loc) · 788 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
25 lines (24 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Runs the prebuilt image published to GHCR. To build from source instead, add
# the build overlay: docker compose -f docker-compose.yml -f docker-compose.build.yml up --build
services:
connector:
image: ghcr.io/oomol-lab/open-connector:latest
ports:
- "3000:3000"
volumes:
- connector-data:/app/data
environment:
OOMOL_CONNECT_DATA_DIR: /app/data
OOMOL_CONNECT_ORIGIN:
OOMOL_CONNECT_ENCRYPTION_KEY:
OOMOL_CONNECT_ADMIN_TOKEN:
OOMOL_CONNECT_RUNTIME_TOKEN:
OOMOL_CONNECT_JWKS_URI:
OOMOL_CONNECT_JWT_ISSUER:
OOMOL_CONNECT_JWT_AUDIENCE:
OOMOL_CONNECT_ALLOWED_ACTIONS:
OOMOL_CONNECT_BLOCKED_ACTIONS:
OOMOL_CONNECT_ALLOWED_PROXIES:
OOMOL_CONNECT_BLOCKED_PROXIES:
volumes:
connector-data: