Skip to content

Quick Start Docker

This guide will get you up and running with FasterChat using Docker. This is the recommended method for most users.

  • Docker installed and running on your system.
  1. Clone the repository:

    Terminal window
    git clone https://github.com/your-repo/FasterChat.git
    cd FasterChat
  2. Run the Docker Compose command:

    Terminal window
    docker-compose up -d

That’s it! The application will be available at http://localhost:3000.

The docker-compose.yml file starts the following services:

  • app: The main FasterChat application.
  • db: A PostgreSQL database for storing user data, conversations, and settings.