1
0
Fork 0
This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
librechat-mistral/docker-compose.amd.yml

34 lines
794 B
YAML
Raw Permalink Normal View History

2024-02-08 03:40:43 +00:00
include:
- docker-compose.base.yml
services:
# Begin Ollama service
ollama:
2024-02-08 03:53:11 +00:00
image: ollama/ollama:0.1.23-rocm
2024-02-08 03:40:43 +00:00
restart: unless-stopped
entrypoint: /bootstrap.sh
command: mistral
env_file:
- .env
ports:
- 11434:11434
# begin for AMD GPU support
devices:
- /dev/kfd
- /dev/dri
group_add:
- video
ipc: host
cap_add:
- SYS_PTRACE
security_opt:
- seccomp=unconfined
2024-02-08 04:19:26 +00:00
environment:
# https://github.com/ROCm/ROCm/issues/2625
GPU_MAX_HW_QUEUES: 1
# https://github.com/ROCm/ROCm/issues/2788#issuecomment-1915765846
# HSA_OVERRIDE_GFX_VERSION: 11.0.0
2024-02-08 03:40:43 +00:00
# end of section for AMD GPU support
volumes:
- ./ollama/bootstrap.sh:/bootstrap.sh:ro
2024-02-08 04:19:26 +00:00
- ./ollama:/root/.ollama