Sys-Arc-Visl/docker-compose.yml
SysVis AI 5c4b83203c feat: add mobile-first UX improvements and theme-aware exports
- Mobile hamburger header with slide-in menu
- Mobile bottom action bar for canvas controls
- Full-screen settings modal on mobile
- Mobile empty state with Get Started prompt
- Theme-aware PNG/JPG/SVG exports (respects light/dark mode)
- Added file-saver package for reliable cross-browser downloads
- Updated README with new features and Docker Hub instructions
2025-12-29 09:59:25 +07:00

35 lines
896 B
YAML

version: '3.8'
services:
webapp:
build: .
container_name: kv-graph-web
restart: always
ports:
- "8338:80"
# Optional if you want to have Ollama running in a container
depends_on:
- ollama
# Optional if you want to have Ollama running in a container
ollama:
image: ollama/ollama:latest
container_name: ollama-service
restart: always
ports:
- "11434:11434"
volumes:
- ./ollama_data:/root/.ollama
environment:
- OLLAMA_KEEP_ALIVE=24h
- OLLAMA_ORIGINS="*"
# NVIDIA GPU Support Configuration
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [ gpu ]
# Fallback for systems without 'deploy' support (older compose versions) or explicit runtime
# runtime: nvidia