Files
ArchiTools/docker-compose.yml
Marius Tarau cb5e01b189 Fix docker-compose for Portainer stack deploy
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>
2026-02-17 17:22:01 +02:00

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"