This commit is contained in:
Ber Gutman 2024-10-21 13:15:45 +00:00 committed by GitHub
commit 91f2be5f73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View file

@ -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.

View file

@ -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: