Added new searxng and crawl4ai services with their secrets and environment variables for web search and crawling. Updated existing container names to use `-app` suffix and adjusted references. Added necessary directory creation for new services.
24 lines
902 B
JSON
24 lines
902 B
JSON
{
|
|
"openwebuipostgres": {
|
|
"POSTGRES_DB": "#POSTGRES_DB",
|
|
"POSTGRES_USER": "#POSTGRES_USER",
|
|
"POSTGRES_PASSWORD": "#POSTGRES_PASSWORD",
|
|
"POSTGRES_ROOT_PASSWORD": "#POSTGRES_ROOT_PASSWORD"
|
|
},
|
|
"openwebuisearxng": {
|
|
"SEARXNG_SECRET": "#SEARXNG_SECRET"
|
|
},
|
|
"openwebuicrawl4ai": {
|
|
"CRAWL4AI_API_TOKEN": "#CRAWL4AI_API_TOKEN"
|
|
},
|
|
"openwebuiapp": {
|
|
"WEBUI_ADMIN_NAME": "#WEBUI_ADMIN_NAME",
|
|
"WEBUI_ADMIN_EMAIL": "#WEBUI_ADMIN_EMAIL",
|
|
"WEBUI_ADMIN_PASSWORD": "#WEBUI_ADMIN_PASSWORD",
|
|
"WEBUI_SECRET_KEY": "#WEBUI_SECRET_KEY",
|
|
"OPENAI_API_KEY": "#OPENAI_API_KEY",
|
|
"DATABASE_URL": "postgres://#POSTGRES_USER:#POSTGRES_PASSWORD@openwebuipostgres-db:5432/#POSTGRES_DB",
|
|
"EXTERNAL_WEB_SEARCH_API_KEY": "#SEARXNG_SECRET",
|
|
"EXTERNAL_WEB_LOADER_API_KEY": "#CRAWL4AI_API_TOKEN"
|
|
}
|
|
} |