CoolFace
Apppublic

NathanParas26/LocalAI

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
docker-compose.yaml16 linesDownload Raw Back to root
1version: '3.6'2 3services:4  api:5    image: quay.io/go-skynet/local-ai:latest6    build:7      context: .8      dockerfile: Dockerfile9    ports:10      - 8080:808011    env_file:12      - .env13    volumes:14      - ./models:/models:cached15    command: ["/usr/bin/local-ai" ]16