LLaMA-Factory-310P3/docker-compose.yml

31 lines
671 B
YAML
Raw Normal View History

services:
2024-06-11 00:19:17 +08:00
llamafactory:
build:
dockerfile: Dockerfile
context: .
2024-06-11 00:19:17 +08:00
args:
INSTALL_BNB: false
INSTALL_VLLM: false
INSTALL_DEEPSPEED: false
PIP_INDEX: https://pypi.org/simple
container_name: llamafactory
volumes:
- ./hf_cache:/root/.cache/huggingface/
- ./data:/app/data
- ./output:/app/output
ports:
- "7860:7860"
2024-06-11 00:19:17 +08:00
- "8000:8000"
ipc: host
2024-06-13 00:07:48 +08:00
tty: true
stdin_open: true
command: bash
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: "all"
capabilities: [gpu]
restart: unless-stopped