mirror of
https://github.com/vndangkhoa/Sys-Arc-Visl.git
synced 2026-04-05 01:17:57 +07:00
- 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
35 lines
896 B
YAML
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
|