- Ensure Docker is installed on your system. You can download it from Docker's official website.
-
Install Docker:
- For Windows and macOS, download and run the Docker Desktop installer.
- For Linux, use the package manager to install Docker. For example, on Ubuntu:
sudo apt-get update sudo apt-get install -y docker.io
-
Verify Docker Installation:
docker --version
-
Clone the Repository:
git clone https://github.com/collab-uniba/IRC-setfit-ollama-demo.git cd IRC-setfit-ollama-demo
-
Build and Run Containers with Docker Compose:
docker-compose up --build
-
Access the Web UI: Open your web browser and navigate to http://localhost:7680.
To run the containers after the initial setup, use the following command:
docker-compose up
Add the -d
flag to run the containers in detached mode:
docker-compose up -d