2026-05-06 17:22:50 +08:00
|
|
|
version: '3.8'
|
|
|
|
|
services:
|
|
|
|
|
nextapp:
|
|
|
|
|
build: .
|
|
|
|
|
ports:
|
|
|
|
|
- "3000:3000"
|
2026-05-09 16:05:23 +08:00
|
|
|
extra_hosts:
|
|
|
|
|
- "host.docker.internal:host-gateway"
|
2026-05-11 17:47:49 +08:00
|
|
|
- "df.clkeji.com:host-gateway"
|
2026-05-06 17:22:50 +08:00
|
|
|
environment:
|
|
|
|
|
- DATABASE_URL=file:/app/data/dev.db
|
|
|
|
|
- NEXTAUTH_SECRET=nextapp-secret-key-2026
|
|
|
|
|
- NEXTAUTH_URL=http://localhost:3000
|
2026-05-11 17:47:49 +08:00
|
|
|
- DIFY_API_URL=http://df.clkeji.com/v1/chat-messages
|
2026-05-09 16:05:23 +08:00
|
|
|
- DIFY_API_KEY=app-lbe2lglt7taGtZk0dG7pAhbx
|
2026-05-06 17:22:50 +08:00
|
|
|
volumes:
|
2026-05-09 16:05:23 +08:00
|
|
|
- ./prisma/dev.db:/app/data/dev.db
|
2026-05-06 17:22:50 +08:00
|
|
|
restart: unless-stopped
|