NathanParas26/LocalAI
0
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 