Files
ai-portal/docker-compose.yml
T

14 lines
322 B
YAML
Raw Normal View History

2026-05-06 17:22:50 +08:00
version: '3.8'
services:
nextapp:
build: .
ports:
- "3000:3000"
environment:
- DATABASE_URL=file:/app/data/dev.db
- NEXTAUTH_SECRET=nextapp-secret-key-2026
- NEXTAUTH_URL=http://localhost:3000
volumes:
- /opt/nextapp/data/dev.db:/app/data/dev.db
restart: unless-stopped