Skip to content

Commit d2e5813

Browse files
Add: Docker default configuration files
- docker/.env - Default environment variables for Docker image - docker/models.json - Placeholder model (docker-default-model) These files are intentionally committed despite .gitignore They are built into the Docker image as fallback configs
1 parent 85e943d commit d2e5813

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

docker/.env

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
PORT=3333
2+
BEARER_TOKEN=change-me
3+
N8N_BEARER_TOKEN=
4+
MODELS_CONFIG=./models.json
5+
LOG_REQUESTS=false
6+
SESSION_ID_HEADERS=X-Session-Id,X-Chat-Id,X-OpenWebUI-Chat-Id

docker/models.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"_comment": "This is a placeholder model built into the Docker image. Mount your own models.json to configure real n8n webhooks.",
3+
"docker-default-model": "https://n8n-openai-bridge.invalid/webhook/REPLACE-ME/chat"
4+
}

0 commit comments

Comments
 (0)