Open-Generative-AI/docker-compose.yml
Đoàn Duy Thành b871842096 feat: add Docker support with port conflict avoidance
Add Dockerfile (multi-stage build) and docker-compose.yml to containerize
the Next.js app. Uses port 3001 on host to avoid conflict with the local
dev server running on 3000.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-27 19:45:15 +07:00

9 lines
188 B
YAML

services:
open-generative-ai:
build: .
container_name: open-generative-ai
ports:
- "3001:3000"
environment:
- NODE_ENV=production
restart: unless-stopped