15 lines
349 B
YAML
15 lines
349 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
kitchen-stock:
|
|
build: .
|
|
container_name: kitchen-stock
|
|
restart: always
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- GEMINI_API_KEY=AQ.Ab8RN6IF-hRoe09JrDVAAktkIAPu400_bnh8egCVa8nuTYyAPQ
|
|
- GEMINI_MODEL=gemma-2-27b-it
|
|
- NEXT_PUBLIC_APP_URL=http://localhost:3000
|