Update .gitignore

This commit is contained in:
Lego4005 2024-06-30 14:25:14 -04:00
parent ce593daab9
commit 5075372a61
9 changed files with 208 additions and 19 deletions

View file

@ -1,39 +1,46 @@
version: '3.7'
services:
searxng:
image: docker.io/searxng/searxng:latest
volumes:
- ./searxng:/etc/searxng:rw
- ./settings.yml:/searxng/settings.yml
- ./limiter.toml:/etc/searxng/limiter.toml
ports:
- 4000:8080
- 8080:8080
networks:
- perplexica-network
restart: unless-stopped
environment:
- BASE_URL=https://clownfish-app-fvz8p.ondigitalocean.app/ghcr-io-lego-4005-searxng
perplexica-backend:
build:
context: .
dockerfile: backend.dockerfile
args:
- SEARXNG_API_URL=http://searxng:8080
SEARXNG_API_URL: https://clownfish-app-fvz8p.ondigitalocean.app/ghcr-io-lego-4005-searxng
depends_on:
- searxng
ports:
- 3001:3001
volumes:
- backend-dbstore:/home/perplexica/data
extra_hosts:
- 'host.docker.internal:host-gateway'
- ./config/config.toml:/app/config.toml:ro # Mount config.toml
networks:
- perplexica-network
restart: unless-stopped
environment:
- PORT=3001
- CONFIG_PATH=/app/config.toml
perplexica-frontend:
build:
context: .
dockerfile: app.dockerfile
args:
- NEXT_PUBLIC_API_URL=http://127.0.0.1:3001/api
- NEXT_PUBLIC_WS_URL=ws://127.0.0.1:3001
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
depends_on:
- perplexica-backend
ports:
@ -41,6 +48,8 @@ services:
networks:
- perplexica-network
restart: unless-stopped
environment:
- PORT=3000
networks:
perplexica-network: