Spaces:
Running
Running
File size: 378 Bytes
eceac5b e1a68dd eceac5b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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 |