├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.db.yml ├── docker-compose.litellm.yml ├── docker-compose.llm.yml ├── litellm ├── .credentials │ └── vertex_ai.json.example └── config.yaml ├── mcpo └── config.json.example ├── searxng ├── limiter.toml ├── settings.yml.example └── uwsgi.ini └── volumes_minio └── minio-entrypoint.sh /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/docker-compose.db.yml -------------------------------------------------------------------------------- /docker-compose.litellm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/docker-compose.litellm.yml -------------------------------------------------------------------------------- /docker-compose.llm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/docker-compose.llm.yml -------------------------------------------------------------------------------- /litellm/.credentials/vertex_ai.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/litellm/.credentials/vertex_ai.json.example -------------------------------------------------------------------------------- /litellm/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/litellm/config.yaml -------------------------------------------------------------------------------- /mcpo/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/mcpo/config.json.example -------------------------------------------------------------------------------- /searxng/limiter.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/searxng/limiter.toml -------------------------------------------------------------------------------- /searxng/settings.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/searxng/settings.yml.example -------------------------------------------------------------------------------- /searxng/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/searxng/uwsgi.ini -------------------------------------------------------------------------------- /volumes_minio/minio-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bachkukkik/openwebui-ollama-docker/HEAD/volumes_minio/minio-entrypoint.sh --------------------------------------------------------------------------------