2024-06-30 14:25:14 -04:00
|
|
|
version: '3.7'
|
|
|
|
|
|
2024-04-09 16:21:05 +05:30
|
|
|
services:
|
|
|
|
|
searxng:
|
2024-05-10 20:55:08 +05:30
|
|
|
image: docker.io/searxng/searxng:latest
|
|
|
|
|
volumes:
|
2024-06-30 14:25:14 -04:00
|
|
|
- ./settings.yml:/searxng/settings.yml
|
|
|
|
|
- ./limiter.toml:/etc/searxng/limiter.toml
|
2024-05-12 12:16:08 +05:30
|
|
|
ports:
|
2024-06-30 14:25:14 -04:00
|
|
|
- 8080:8080
|
2024-05-12 14:04:05 +05:30
|
|
|
networks:
|
|
|
|
|
- perplexica-network
|
2024-05-30 18:12:22 +08:00
|
|
|
restart: unless-stopped
|
2024-06-30 14:25:14 -04:00
|
|
|
environment:
|
|
|
|
|
- BASE_URL=https://clownfish-app-fvz8p.ondigitalocean.app/ghcr-io-lego-4005-searxng
|
2024-04-24 10:08:40 +05:30
|
|
|
|
2024-04-09 16:21:05 +05:30
|
|
|
perplexica-backend:
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
dockerfile: backend.dockerfile
|
|
|
|
|
args:
|
2024-06-30 14:25:14 -04:00
|
|
|
SEARXNG_API_URL: https://clownfish-app-fvz8p.ondigitalocean.app/ghcr-io-lego-4005-searxng
|
2024-04-09 16:21:05 +05:30
|
|
|
depends_on:
|
|
|
|
|
- searxng
|
2024-05-12 14:04:05 +05:30
|
|
|
ports:
|
2024-05-13 19:58:17 +05:30
|
|
|
- 3001:3001
|
2024-06-29 11:10:26 +05:30
|
|
|
volumes:
|
|
|
|
|
- backend-dbstore:/home/perplexica/data
|
2024-06-30 14:25:14 -04:00
|
|
|
- ./config/config.toml:/app/config.toml:ro # Mount config.toml
|
2024-05-12 14:04:05 +05:30
|
|
|
networks:
|
|
|
|
|
- perplexica-network
|
2024-05-30 18:12:22 +08:00
|
|
|
restart: unless-stopped
|
2024-06-30 14:25:14 -04:00
|
|
|
environment:
|
|
|
|
|
- PORT=3001
|
|
|
|
|
- CONFIG_PATH=/app/config.toml
|
2024-04-09 16:21:05 +05:30
|
|
|
|
|
|
|
|
perplexica-frontend:
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
dockerfile: app.dockerfile
|
|
|
|
|
args:
|
2024-06-30 14:25:14 -04:00
|
|
|
NEXT_PUBLIC_API_URL: https://clownfish-app-fvz8p.ondigitalocean.app/ghcr-io-lego-4005-perplexica-bac/api
|
|
|
|
|
NEXT_PUBLIC_WS_URL: wss://clownfish-app-fvz8p.ondigitalocean.app/ghcr-io-lego-4005-perplexica-bac
|
2024-04-09 16:21:05 +05:30
|
|
|
depends_on:
|
|
|
|
|
- perplexica-backend
|
|
|
|
|
ports:
|
2024-05-13 19:58:17 +05:30
|
|
|
- 3000:3000
|
2024-05-12 14:04:05 +05:30
|
|
|
networks:
|
|
|
|
|
- perplexica-network
|
2024-05-30 18:12:22 +08:00
|
|
|
restart: unless-stopped
|
2024-06-30 14:25:14 -04:00
|
|
|
environment:
|
|
|
|
|
- PORT=3000
|
2024-05-12 14:04:05 +05:30
|
|
|
|
|
|
|
|
networks:
|
2024-05-13 19:58:17 +05:30
|
|
|
perplexica-network:
|
2024-06-29 11:10:26 +05:30
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
backend-dbstore:
|