Files
DeepRes_bot/docker-compose.yml
T

34 lines
631 B
YAML

version: "3.9"
services:
postgres:
image: postgres:17
ports:
- "5432:5432"
environment:
POSTGRES_DB: deepres
POSTGRES_USER: deepres
POSTGRES_PASSWORD: deepres
volumes:
- pgdata:/var/lib/postgresql/data
restart: unless-stopped
nats:
image: nats:latest
ports:
- "4222:4222"
restart: unless-stopped
searxng:
image: searxng/searxng:latest
ports:
- "4000:8080"
environment:
- SEARXNG_BASE_URL=http://localhost:4000
volumes:
- ./searxng/settings.yml:/etc/searxng/settings.yml:z
restart: unless-stopped
volumes:
pgdata: