mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 23:41:07 +00:00
init all current docker compose files
This commit is contained in:
parent
3694b45ece
commit
adc70638d1
12 changed files with 432 additions and 0 deletions
27
ollama/docker-compose.yaml
Normal file
27
ollama/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
services:
|
||||
open-webui:
|
||||
volumes:
|
||||
- open-webui:/app/backend/data
|
||||
environment:
|
||||
- OLLAMA_BASE_URL=http://192.168.12.151:11434
|
||||
container_name: open-webui
|
||||
restart: always
|
||||
image: ghcr.io/open-webui/open-webui:main
|
||||
|
||||
ollama:
|
||||
restart: always
|
||||
devices:
|
||||
- /dev/kfd
|
||||
- /dev/dri
|
||||
volumes:
|
||||
- ollama:/root/.ollama
|
||||
ports:
|
||||
- 11434:11434
|
||||
container_name: ollama
|
||||
environment:
|
||||
- HSA_OVERRIDE_GFX_VERSION=10.3.0
|
||||
- HCC_AMDGPU_TARGET=gfx1030
|
||||
image: ollama/ollama:rocm
|
||||
volumes:
|
||||
ollama:
|
||||
open-webui:
|
||||
Loading…
Add table
Add a link
Reference in a new issue