File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments