LLaMA-Factory/docker/docker-cuda/docker-compose.yml
hoshi-hiyouga 62e63d74ec Update docker-compose.yml
Former-commit-id: 15608d055827e41b44fb8a381b1fe5a1230afcb0
2024-06-25 00:46:47 +08:00

31 lines
696 B
YAML

services:
llamafactory:
build:
dockerfile: ./docker/docker-cuda/Dockerfile
context: ../..
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"
- "8000:8000"
ipc: host
tty: true
stdin_open: true
command: bash
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: "all"
capabilities: [gpu]
restart: unless-stopped