Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- no-new-privileges:true
environment:
- STORAGE_DIR=/app/server/storage
- JWT_SECRET=${ANYTHINGLLM_JWT_SECRET:?ANYTHINGLLM_JWT_SECRET must be set}
- JWT_SECRET=${ANYTHINGLLM_JWT_SECRET:-change-me-in-production}
- LLM_PROVIDER=${ANYTHINGLLM_LLM_PROVIDER:-ollama}
- OLLAMA_BASE_PATH=${OLLAMA_BASE_PATH:-http://ollama:11434}
- OLLAMA_MODEL_PREF=${OLLAMA_MODEL_PREF:-llama3.2}
Expand All @@ -20,7 +20,7 @@ services:
- WHISPER_PROVIDER=${ANYTHINGLLM_WHISPER_PROVIDER:-local}
- TTS_PROVIDER=${ANYTHINGLLM_TTS_PROVIDER:-native}
- PASSWORDMINCHAR=${ANYTHINGLLM_PASSWORD_MIN:-8}
- AUTH_TOKEN=${ANYTHINGLLM_AUTH_TOKEN:?ANYTHINGLLM_AUTH_TOKEN must be set}
- AUTH_TOKEN=${ANYTHINGLLM_AUTH_TOKEN:-}
volumes:
- ./data/anythingllm:/app/server/storage:rw
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ services:
- SECRETKEY_PATH=${FLOWISE_SECRETKEY_PATH:-/root/.flowise/secretkey}
- LOG_PATH=/root/.flowise/logs
- BLOB_STORAGE_PATH=/root/.flowise/storage
- FLOWISE_USERNAME=${FLOWISE_USERNAME:?FLOWISE_USERNAME must be set}
- FLOWISE_PASSWORD=${FLOWISE_PASSWORD:?FLOWISE_PASSWORD must be set}
- FLOWISE_USERNAME=${FLOWISE_USERNAME:-}
- FLOWISE_PASSWORD=${FLOWISE_PASSWORD:-}
- FLOWISE_SECRETKEY_OVERWRITE=${FLOWISE_SECRETKEY_OVERWRITE:-}
- IFRAME_ORIGINS=${FLOWISE_IFRAME_ORIGINS:-}
- DISABLE_FLOWISE_TELEMETRY=${FLOWISE_DISABLE_TELEMETRY:-true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- "127.0.0.1:${FRIGATE_WEBRTC_PORT:-8555}:8555/tcp"
- "127.0.0.1:${FRIGATE_WEBRTC_PORT:-8555}:8555/udp"
environment:
- FRIGATE_RTSP_PASSWORD=${FRIGATE_RTSP_PASSWORD:?FRIGATE_RTSP_PASSWORD must be set}
- FRIGATE_RTSP_PASSWORD=${FRIGATE_RTSP_PASSWORD:-frigate}
volumes:
- ./data/frigate/config:/config
- ./data/frigate/storage:/media/frigate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ services:
- ./data/jupyter/notebooks:/home/jovyan/notebooks
environment:
- LLM_API_URL=${LLM_API_URL:-http://localhost:8000}
- JUPYTER_TOKEN=${JUPYTER_TOKEN:?JUPYTER_TOKEN must be set}
- JUPYTER_TOKEN=${JUPYTER_TOKEN:-jupyter}
- NB_PREFIX=/
command: start.sh jupyter lab --NotebookApp.token=${JUPYTER_TOKEN:?JUPYTER_TOKEN must be set} --NotebookApp.password='' --NotebookApp.port=8888 --NotebookApp.ip=0.0.0.0 --NotebookApp.open_browser=False
command: start.sh jupyter lab --NotebookApp.token=${JUPYTER_TOKEN:-jupyter} --NotebookApp.password='' --NotebookApp.port=8888 --NotebookApp.ip=0.0.0.0 --NotebookApp.open_browser=False
restart: unless-stopped
security_opt:
- no-new-privileges:true
Expand Down
12 changes: 6 additions & 6 deletions resources/dev/extensions-library/services/librechat/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ services:
- BINGAI_TOKEN=${BINGAI_TOKEN:-}
- DALLE3_API_KEY=${DALLE3_API_KEY:-}
- DALLE3_BASEURL=${DALLE3_BASEURL:-}
- "CREDS_KEY=${CREDS_KEY:?CREDS_KEY must be set – generate with: openssl rand -hex 32}"
- "CREDS_IV=${CREDS_IV:?CREDS_IV must be set – generate with: openssl rand -hex 16}"
- JWT_SECRET=${JWT_SECRET:?JWT_SECRET must be set}
- JWT_REFRESH_SECRET=${JWT_REFRESH_SECRET:?JWT_REFRESH_SECRET must be set}
- "CREDS_KEY=${CREDS_KEY:-deadbeef1234567890abcdef1234567890abcdef1234567890abcdef12345678}"
- "CREDS_IV=${CREDS_IV:-deadbeef1234567890abcdef12345678}"
- JWT_SECRET=${JWT_SECRET:-change-me-jwt-secret-in-production}
- JWT_REFRESH_SECRET=${JWT_REFRESH_SECRET:-change-me-jwt-refresh-in-production}
- APP_TITLE=${APP_TITLE:-LibreChat}
- DOMAIN_CLIENT=${DOMAIN_CLIENT:-}
- DOMAIN_SERVER=${DOMAIN_SERVER:-}
Expand Down Expand Up @@ -86,7 +86,7 @@ services:
- no-new-privileges:true
environment:
- MONGO_INITDB_ROOT_USERNAME=librechat
- MONGO_INITDB_ROOT_PASSWORD=${LIBRECHAT_MONGO_PASSWORD:?LIBRECHAT_MONGO_PASSWORD must be set}
- MONGO_INITDB_ROOT_PASSWORD=${LIBRECHAT_MONGO_PASSWORD:-librechat}
volumes:
- ./data/librechat/mongodb:/data/db:rw
healthcheck:
Expand Down Expand Up @@ -114,7 +114,7 @@ services:
- no-new-privileges:true
environment:
- MEILI_ENV=production
- MEILI_MASTER_KEY=${LIBRECHAT_MEILI_KEY:?LIBRECHAT_MEILI_KEY must be set}
- MEILI_MASTER_KEY=${LIBRECHAT_MEILI_KEY:-meili-master-key-change-me}
volumes:
- ./data/librechat/meilisearch:/meili_data:rw
healthcheck:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
environment:
- PORT=8080
- LLM_API_URL=${LLM_API_URL:-http://llama-server:8000}
- OPEN_INTERPRETER_API_KEY=${OPEN_INTERPRETER_API_KEY:?OPEN_INTERPRETER_API_KEY must be set}
- OPEN_INTERPRETER_API_KEY=${OPEN_INTERPRETER_API_KEY:-}
- OPEN_INTERPRETER_AUTO_RUN=${OPEN_INTERPRETER_AUTO_RUN:-false}
volumes:
- ./data/open-interpreter:/app/data:rw
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- PAPERLESS_DBHOST=${PAPERLESS_DBHOST:-paperless-postgres}
- PAPERLESS_DBPORT=${PAPERLESS_DBPORT:-5432}
- PAPERLESS_REDIS=${PAPERLESS_REDIS:-redis://paperless-redis:6379}
- "PAPERLESS_SECRET_KEY=${PAPERLESS_SECRET_KEY:?PAPERLESS_SECRET_KEY must be set – generate with: python3 -c \"import secrets; print(secrets.token_urlsafe(50))\"}"
- "PAPERLESS_SECRET_KEY=${PAPERLESS_SECRET_KEY:-change-me-paperless-secret-key-production}"
- PAPERLESS_URL=http://${PAPERLESS_HOST:-paperless}:${PAPERLESS_PORT:-7807}
volumes:
- ./data/paperless/data:/usr/src/paperless/data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
- QUERY_DEFAULTS_LIMIT=25
- AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=false
- AUTHENTICATION_APIKEY_ENABLED=true
- AUTHENTICATION_APIKEY_ALLOWED_KEYS=${WEAVIATE_API_KEY:?WEAVIATE_API_KEY must be set}
- AUTHENTICATION_APIKEY_ALLOWED_KEYS=${WEAVIATE_API_KEY:-weaviate-default-key}
- AUTHENTICATION_APIKEY_USERS=admin@dreamserver.local
- PERSISTENCE_DATA_PATH=/var/lib/weaviate
- CLUSTER_HOSTNAME=dream-weaviate
Expand Down
Loading