mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
version: "3.3"
|
|
services:
|
|
text-generation-webui:
|
|
build:
|
|
context: .
|
|
args:
|
|
# specify which cuda version your card supports: https://developer.nvidia.com/cuda-gpus
|
|
TORCH_CUDA_ARCH_LIST: ${TORCH_CUDA_ARCH_LIST:-7.5}
|
|
BUILD_EXTENSIONS: ${BUILD_EXTENSIONS:-}
|
|
APP_GID: ${APP_GID:-6972}
|
|
APP_UID: ${APP_UID-6972}
|
|
env_file: .env
|
|
user: "${APP_RUNTIME_UID:-6972}:${APP_RUNTIME_GID:-6972}"
|
|
ports:
|
|
- "${HOST_PORT:-7860}:${CONTAINER_PORT:-7860}"
|
|
- "${HOST_API_PORT:-5000}:${CONTAINER_API_PORT:-5000}"
|
|
stdin_open: true
|
|
tty: true
|
|
volumes:
|
|
- ./characters:/home/app/text-generation-webui/characters
|
|
- ./extensions:/home/app/text-generation-webui/extensions
|
|
- ./loras:/home/app/text-generation-webui/loras
|
|
- ./models:/home/app/text-generation-webui/models
|
|
- ./presets:/home/app/text-generation-webui/presets
|
|
- ./prompts:/home/app/text-generation-webui/prompts
|
|
- ./softprompts:/home/app/text-generation-webui/softprompts
|
|
- ./training:/home/app/text-generation-webui/training
|
|
- ./cloudflared:/etc/cloudflared
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|