Skip to content

Commit 8563863

Browse files
committed
Changing the 11434 as the system port default mythrantic#8
no work when changing ollama port mythrantic#6
1 parent f2561dc commit 8563863

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

docker-compose-ollama-gpu.yaml

+11-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ services:
2525
restart: unless-stopped
2626
image: ollama/ollama:latest
2727
ports:
28-
- 11434:11434
28+
- 7869:11434
29+
environment:
30+
- OLLAMA_KEEP_ALIVE="24h"
31+
- OLLAMA_HOST=0.0.0.0
2932
networks:
3033
- ollama-docker
3134
deploy:
@@ -45,8 +48,13 @@ services:
4548
- ollama
4649
ports:
4750
- 8080:8080
48-
environment:
49-
- '/ollama/api=http://ollama:11434/api'
51+
environment: # https://docs.openwebui.com/getting-started/env-configuration#default_models
52+
- OLLAMA_BASE_URLS=http://host.docker.internal:7869 #comma separated ollama hosts
53+
- ENV=dev
54+
- WEBUI_AUTH=False
55+
- WEBUI_NAME=valiantlynx AI
56+
- WEBUI_URL=http://localhost:8080
57+
- WEBUI_SECRET_KEY=t0p-s3cr3t
5058
extra_hosts:
5159
- host.docker.internal:host-gateway
5260
restart: unless-stopped

docker-compose.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
ollama:
1919
image: ollama/ollama:latest
2020
ports:
21-
- 11434:11434
21+
- 7869:11434
2222
volumes:
2323
- .:/code
2424
- ./ollama/ollama:/root/.ollama
@@ -41,8 +41,13 @@ services:
4141
- ollama
4242
ports:
4343
- 8080:8080
44-
environment:
45-
- '/ollama/api=http://ollama:11434/api'
44+
environment: # https://docs.openwebui.com/getting-started/env-configuration#default_models
45+
- OLLAMA_BASE_URLS=http://host.docker.internal:7869 #comma separated ollama hosts
46+
- ENV=dev
47+
- WEBUI_AUTH=False
48+
- WEBUI_NAME=valiantlynx AI
49+
- WEBUI_URL=http://localhost:8080
50+
- WEBUI_SECRET_KEY=t0p-s3cr3t
4651
extra_hosts:
4752
- host.docker.internal:host-gateway
4853
restart: unless-stopped

0 commit comments

Comments
 (0)