初始化提交

This commit is contained in:
lvyulong
2026-06-12 14:59:20 +08:00
parent c1d00901a8
commit 00718f47f3
85 changed files with 15799 additions and 0 deletions

27
docker-compose.gpu.yml Normal file
View File

@@ -0,0 +1,27 @@
# GPU override file
# Usage: docker compose -f docker-compose.yml -f docker-compose.gpu.yml up -d
#
# Prerequisites:
# 1. NVIDIA GPU driver installed on host
# 2. NVIDIA Container Toolkit installed
# 3. Verify with: docker info | grep nvidia
#
# This file overrides the default docker-compose.yml to:
# - Build with Dockerfile.gpu (NVIDIA CUDA base image)
# - Attach GPU device to the api service
services:
webui:
build:
context: .
dockerfile: Dockerfile.gpu
api:
build:
context: .
dockerfile: Dockerfile.gpu
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]