Remove env_file (.env not in repo) and proxy-network (not needed yet). Inline essential environment variables directly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
423 B
YAML
17 lines
423 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
architools:
|
|
build: .
|
|
container_name: architools
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- NEXT_PUBLIC_APP_NAME=ArchiTools
|
|
- NEXT_PUBLIC_APP_URL=${APP_URL:-http://10.10.10.166:3000}
|
|
- NEXT_PUBLIC_STORAGE_ADAPTER=localStorage
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=true"
|