24 lines
503 B
YAML
24 lines
503 B
YAML
services:
|
|
nextjs_app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: runner
|
|
# image: honghe-acfic-chat:latest
|
|
container_name: honghe-acfic-chat
|
|
ports:
|
|
- "3004:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=3000
|
|
- HOSTNAME=0.0.0.0
|
|
# 如果需要禁用遥测,取消注释下一行
|
|
# - NEXT_TELEMETRY_DISABLED=1
|
|
restart: unless-stopped
|
|
networks:
|
|
- nextjs_network
|
|
|
|
networks:
|
|
nextjs_network:
|
|
driver: bridge
|