Skip to content

Commit

Permalink
Merge pull request #5 from ixxmu/main
Browse files Browse the repository at this point in the history
Add docker compose config
  • Loading branch information
fatwang2 authored Mar 25, 2024
2 parents 499e8f0 + 2b53691 commit 018e514
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,31 @@ You have three options for Google Search: you can use the [SearchApi Google Sear
```
docker run -d --name search4all -e OPENAI_API_KEY=sk-XXX -e OPENAI_BASE_URL=https://api.openai.com/v1 -e LLM_MODEL=gpt-3.5-turbo-0125 -e RELATED_QUESTIONS=1 -e SEARCH1API_KEY=XXX -e BACKEND=SEARCH1API -p 8800:8800 docker.io/fatwang2/search4all
```

### Docker-Compose
[Hub address](https://hub.docker.com/r/fatwang2/search4all)

```yml
version: '3.4'

services:
search4all:
image: docker.io/fatwang2/search4all
restart: unless-stopped
ports:
- 8800:8800
environment:
OPENAI_API_KEY: sk-xxx
OPENAI_BASE_URL: https://api.openai.com/v1
LLM_MODEL: gpt-3.5-turbo-0125
RELATED_QUESTIONS: 1
NODE_ENV: production
# Change your search provider name here, if use another different provider
BACKEND: SEARCH1API
# Set your search key from your provider here
SEARCH1API_KEY: xxxx
```
### Manual
1. install the requirements.txt
```shell
Expand Down

0 comments on commit 018e514

Please sign in to comment.