aethex-forge/docker-compose.yml
AeThex 2ae331f9fe fix: remove listGpus import/route breaking production build
listGpus was removed from session.ts when migrating to RunPod Serverless,
but server/index.ts still imported and registered it, failing the esbuild.
Also stages stream API, StreamUpgrade page, and Dockerfile/compose fixes.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-19 16:42:44 +00:00

14 lines
373 B
YAML

services:
aethex-forge:
build:
context: .
args:
- VITE_SUPABASE_URL=${VITE_SUPABASE_URL}
- VITE_SUPABASE_ANON_KEY=${VITE_SUPABASE_ANON_KEY}
- VITE_AUTHENTIK_PROVIDER=${VITE_AUTHENTIK_PROVIDER}
container_name: aethex-forge
restart: unless-stopped
ports:
- "5050:5000"
env_file: .env
command: npm run start