gemini-codrawing / docker-compose.yml
Trudy's picture
cycled API key + shortened docker files
e1a68dd
raw
history blame contribute delete
378 Bytes
version: '3'
services:
nextjs-app:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- GEMINI_API_KEY=${GEMINI_API_KEY}
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3