Menu
popagent
publicLatest change 6edc7e928c57dab23c0973ed3f7ee70b3ebb72d5 - Initial popagent baseline by AkurAI Build
services:
postgres:
image: postgres:17-alpine
restart: unless-stopped
environment:
POSTGRES_DB: popagent
POSTGRES_USER: popagent
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?POSTGRES_PASSWORD is required}
volumes:
- popagent-postgres:/var/lib/postgresql/data
ports:
- "127.0.0.1:5433:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U popagent -d popagent"]
interval: 5s
timeout: 3s
retries: 20
searxng:
image: searxng/searxng:latest
restart: unless-stopped
volumes:
- ./searxng/settings.yml:/etc/searxng/settings.yml:ro
ports:
- "127.0.0.1:8889:8080"
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:8080/healthz >/dev/null"]
interval: 10s
timeout: 3s
retries: 20
volumes:
popagent-postgres: