Skip to content

Commit 389613c

Browse files
committed
docs: use placeholder IP instead of example IP in docker-compose docs
Replace 192.168.1.100 with YOUR_OLLAMA_SERVER_IP to make it clear that users need to replace it with their own IP
1 parent 15dda88 commit 389613c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

DOCKER.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,9 @@ services:
9898
- API_ENDPOINT=http://ollama-server.local:11434/api/generate
9999
- LLM_PROVIDER=ollama
100100
extra_hosts:
101-
# Map hostname to IP (required for Docker Desktop on Windows/Mac)
102-
- "ollama-server.local:192.168.1.100"
101+
# Replace with your Ollama server's IP address
102+
# Example: if your server is at 192.168.1.50
103+
- "ollama-server.local:YOUR_OLLAMA_SERVER_IP"
103104
volumes:
104105
- ./translated_files:/app/translated_files
105106
- ./logs:/app/logs

docker-compose.remote-ollama.example.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ services:
3030
- SIGNATURE_ENABLED=false
3131
- DEBUG_MODE=true
3232
extra_hosts:
33-
# Replace with your Ollama server's hostname and IP
34-
- "ollama-server.local:192.168.1.100"
33+
# Replace 'ollama-server.local' with your server's hostname
34+
# Replace 'YOUR_OLLAMA_SERVER_IP' with your server's IP address
35+
- "ollama-server.local:YOUR_OLLAMA_SERVER_IP"
3536
volumes:
3637
- ./translated_files:/app/translated_files
3738
- ./logs:/app/logs

0 commit comments

Comments
 (0)