Merge 3d3e5ebec2
into dfb532e4d3
This commit is contained in:
commit
91f2be5f73
2 changed files with 5 additions and 3 deletions
|
@ -80,9 +80,11 @@ There are mainly 2 ways of installing Perplexica - With Docker, Without Docker.
|
||||||
5. Ensure you are in the directory containing the `docker-compose.yaml` file and execute:
|
5. Ensure you are in the directory containing the `docker-compose.yaml` file and execute:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker compose up -d
|
docker compose --profile bundled up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Note**: `--profile bundled` installs SearXNG locally. If you are using an externally managed SearXNG instance omit this profile.
|
||||||
|
|
||||||
6. Wait a few minutes for the setup to complete. You can access Perplexica at http://localhost:3000 in your web browser.
|
6. Wait a few minutes for the setup to complete. You can access Perplexica at http://localhost:3000 in your web browser.
|
||||||
|
|
||||||
**Note**: After the containers are built, you can start Perplexica directly from Docker without having to open a terminal.
|
**Note**: After the containers are built, you can start Perplexica directly from Docker without having to open a terminal.
|
||||||
|
|
|
@ -8,6 +8,8 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- perplexica-network
|
- perplexica-network
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
profiles:
|
||||||
|
- bundled
|
||||||
|
|
||||||
perplexica-backend:
|
perplexica-backend:
|
||||||
build:
|
build:
|
||||||
|
@ -16,8 +18,6 @@ services:
|
||||||
image: itzcrazykns1337/perplexica-backend:main
|
image: itzcrazykns1337/perplexica-backend:main
|
||||||
environment:
|
environment:
|
||||||
- SEARXNG_API_URL=http://searxng:8080
|
- SEARXNG_API_URL=http://searxng:8080
|
||||||
depends_on:
|
|
||||||
- searxng
|
|
||||||
ports:
|
ports:
|
||||||
- 3001:3001
|
- 3001:3001
|
||||||
volumes:
|
volumes:
|
||||||
|
|
Loading…
Add table
Reference in a new issue