Note
This repository is publicly accessible as part of our open-source initiative. We welcome contributions from the community alongside our organization's primary development efforts.
The CLOUDETaiR chatbot frontend builds on LibreChat, using the official stable LibreChat container images as the Dockerfile base.
Many thanks to the LibreChat team for providing a solid foundation! ❤️
- Builds a customized Docker image on top of the official LibreChat image.
- Pushes the customized image to GitHub Container Registry.
- Fully automated via GitHub Actions workflows.
- Serves as a reusable base for further customizations.
This repository includes a default librechat.yaml configuration that adds support for an Azure OpenAI endpoint. The endpoint parameters are provided through the environment variables:
AZURE_OPENAI_INSTANCE_NAMEAZURE_OPENAI_API_KEY
This project extends the official LibreChat container image. There is no separate app codebase; development focuses on customizing the container and deployment.
# Build the container image
docker compose build
# Start the containers in detached mode
docker compose up --detach
# The frontend will be available at http://localhost:3080
# Stop containers and remove volumes
docker compose down --volumes