fix: NEXT_PUBLIC_API_URL을 HTTPS로 변경, agent .env 마운트 추가

This commit is contained in:
AutonetSellCar Deploy
2025-12-31 11:00:09 +09:00
parent 81b75f0e2c
commit d48de13377

View File

@@ -10,7 +10,7 @@ services:
- "3000:3000" - "3000:3000"
environment: environment:
- NODE_ENV=production - NODE_ENV=production
- NEXT_PUBLIC_API_URL=http://192.168.0.202:8000 - NEXT_PUBLIC_API_URL=https://autonetsellcar.com
depends_on: depends_on:
- backend - backend
restart: unless-stopped restart: unless-stopped
@@ -42,6 +42,7 @@ services:
environment: environment:
- ENV=production - ENV=production
volumes: volumes:
- ./agent/.env:/app/.env:ro
- agent-data:/app/data - agent-data:/app/data
- agent-logs:/app/logs - agent-logs:/app/logs
restart: unless-stopped restart: unless-stopped