Get up and running in minutes with Docker.
Start by getting the source code on your local machine.
git clone https://github.com/Amlan-109/LocalAI-master.git
cd LocalAI-master
Compile the specialized Docker image. This packages all dependencies including the Go backend and C++ bindings.
docker build -t localai-amlan .
Launch the service on port 8080.
docker run -p 8080:8080 --name local-ai-amlan -ti localai-amlan
To run in the background (detached mode), replace -ti with -d.