ponysearch-docker/docker-compose.yaml

78 lines
1.5 KiB
YAML
Raw Normal View History

version: "3.7"
2019-07-01 16:26:12 +02:00
services:
caddy:
container_name: caddy
image: docker.io/library/caddy:2-alpine
network_mode: host
restart: unless-stopped
2019-07-01 16:26:12 +02:00
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile:ro
- caddy-data:/data:rw
- caddy-config:/config:rw
environment:
- SEARXNG_HOSTNAME=${SEARXNG_HOSTNAME:-http://localhost:80}
2021-10-01 09:42:00 +02:00
- SEARXNG_TLS=${LETSENCRYPT_EMAIL:-internal}
cap_drop:
- ALL
cap_add:
- NET_BIND_SERVICE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
2019-07-01 16:26:12 +02:00
redis:
container_name: redis
image: cgr.dev/chainguard/valkey:latest
command: --save 30 1 --loglevel warning
restart: unless-stopped
networks:
2021-10-01 09:42:00 +02:00
- searxng
volumes:
- valkey-data:/data
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
2019-07-01 16:26:12 +02:00
2022-03-19 20:16:38 +01:00
searxng:
container_name: searxng
2024-04-29 16:29:41 +02:00
image: docker.io/fauli1221/ponysearch:latest
restart: unless-stopped
2019-07-01 16:26:12 +02:00
networks:
2021-10-01 09:42:00 +02:00
- searxng
ports:
- "127.0.0.1:8080:8080"
2019-07-01 16:26:12 +02:00
volumes:
2022-03-19 20:16:38 +01:00
- ./searxng:/etc/searxng:rw
2019-07-01 16:26:12 +02:00
environment:
2022-03-19 20:16:38 +01:00
- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
2022-03-19 20:16:38 +01:00
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
2019-07-01 16:26:12 +02:00
networks:
2021-10-01 09:42:00 +02:00
searxng:
volumes:
caddy-data:
caddy-config:
valkey-data: