ponysearch-docker/docker-compose.yaml

71 lines
1.3 KiB
YAML
Raw Normal View History

2019-07-01 16:26:12 +02:00
version: '3.7'
services:
caddy:
container_name: caddy
image: caddy:2-alpine
restart: always
network_mode: host
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
2019-07-06 16:37:18 +02:00
- DAC_OVERRIDE
2019-07-01 16:26:12 +02:00
redis:
container_name: redis
image: "redis:alpine"
restart: always
command: redis-server --save "" --appendonly "no"
networks:
2021-10-01 09:42:00 +02:00
- searxng
tmpfs:
- /var/lib/redis
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
2019-07-01 16:26:12 +02:00
2022-03-19 20:16:38 +01:00
searxng:
container_name: searxng
image: searxng/searxng:latest
restart: always
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
2019-07-06 16:37:18 +02:00
- DAC_OVERRIDE
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:
2019-07-01 16:26:12 +02:00
ipam:
driver: default
volumes:
caddy-data:
caddy-config: