2019-07-01 16:26:12 +02:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
caddy:
|
2019-07-06 14:54:05 +02:00
|
|
|
container_name: caddy
|
2020-07-13 08:12:32 +02:00
|
|
|
image: caddy:2-alpine
|
2019-07-06 14:54:05 +02:00
|
|
|
network_mode: host
|
2019-07-01 16:26:12 +02:00
|
|
|
volumes:
|
2020-07-13 08:12:32 +02:00
|
|
|
- ./Caddyfile:/etc/caddy/Caddyfile:ro
|
2019-07-09 18:05:05 +02:00
|
|
|
- searx-checker:/srv/searx-checker:rw
|
2020-07-13 08:12:32 +02:00
|
|
|
- caddy-data:/data:rw
|
|
|
|
- caddy-config:/config:rw
|
2019-07-02 18:24:26 +02:00
|
|
|
environment:
|
2020-07-13 08:12:32 +02:00
|
|
|
- SEARX_HOSTNAME=${SEARX_HOSTNAME:-localhost}
|
|
|
|
- SEARX_TLS=${LETSENCRYPT_EMAIL:-internal}
|
2019-07-06 14:54:05 +02:00
|
|
|
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
|
|
|
|
2019-07-06 14:54:05 +02:00
|
|
|
filtron:
|
|
|
|
container_name: filtron
|
2019-07-11 17:17:12 +02:00
|
|
|
image: dalf/filtron
|
2019-07-06 14:54:05 +02:00
|
|
|
restart: always
|
|
|
|
ports:
|
2020-07-13 08:12:32 +02:00
|
|
|
- "127.0.0.1:4040:4040"
|
|
|
|
- "127.0.0.1:4041:4041"
|
2019-07-06 14:54:05 +02:00
|
|
|
networks:
|
2020-04-10 10:45:58 +02:00
|
|
|
- searx
|
|
|
|
command: -listen 0.0.0.0:4040 -api 0.0.0.0:4041 -target searx:8080
|
2019-07-13 10:56:22 +02:00
|
|
|
volumes:
|
|
|
|
- ./rules.json:/etc/filtron/rules.json:rw
|
2019-07-06 14:54:05 +02:00
|
|
|
read_only: true
|
|
|
|
cap_drop:
|
|
|
|
- ALL
|
2019-07-01 16:26:12 +02:00
|
|
|
|
|
|
|
searx:
|
2019-07-06 14:54:05 +02:00
|
|
|
container_name: searx
|
2019-07-13 16:53:11 +02:00
|
|
|
image: searx/searx:latest
|
2019-07-02 18:24:26 +02:00
|
|
|
restart: always
|
2019-07-01 16:26:12 +02:00
|
|
|
networks:
|
2020-04-10 10:45:58 +02:00
|
|
|
- searx
|
2019-07-09 18:05:05 +02:00
|
|
|
command: ${SEARX_COMMAND:-}
|
2019-07-01 16:26:12 +02:00
|
|
|
volumes:
|
2019-07-09 18:05:05 +02:00
|
|
|
- ./searx:/etc/searx:rw
|
2019-07-01 16:26:12 +02:00
|
|
|
environment:
|
2020-04-10 10:45:58 +02:00
|
|
|
- BIND_ADDRESS=0.0.0.0:8080
|
2020-07-13 08:12:32 +02:00
|
|
|
- BASE_URL=https://${SEARX_HOSTNAME:-localhost}/
|
|
|
|
- MORTY_URL=https://${SEARX_HOSTNAME:-localhost}/morty/
|
2019-07-01 16:26:12 +02:00
|
|
|
- MORTY_KEY=${MORTY_KEY}
|
2019-07-06 14:54:05 +02:00
|
|
|
cap_drop:
|
|
|
|
- ALL
|
|
|
|
cap_add:
|
|
|
|
- CHOWN
|
|
|
|
- SETGID
|
|
|
|
- SETUID
|
2019-07-06 16:37:18 +02:00
|
|
|
- DAC_OVERRIDE
|
2019-07-01 16:26:12 +02:00
|
|
|
|
|
|
|
morty:
|
2019-07-06 14:54:05 +02:00
|
|
|
container_name: morty
|
2019-07-11 17:17:12 +02:00
|
|
|
image: dalf/morty
|
2019-07-02 18:24:26 +02:00
|
|
|
restart: always
|
2019-07-06 14:54:05 +02:00
|
|
|
ports:
|
2020-07-13 08:12:32 +02:00
|
|
|
- "127.0.0.1:3000:3000"
|
2019-07-01 16:26:12 +02:00
|
|
|
networks:
|
2020-04-10 10:45:58 +02:00
|
|
|
- searx
|
2020-07-30 20:42:47 +02:00
|
|
|
command: -timeout 6 -ipv6
|
2019-07-01 16:26:12 +02:00
|
|
|
environment:
|
|
|
|
- MORTY_KEY=${MORTY_KEY}
|
2020-07-30 20:42:47 +02:00
|
|
|
- MORTY_ADDRESS=0.0.0.0:3000
|
2019-07-06 14:54:05 +02:00
|
|
|
logging:
|
|
|
|
driver: none
|
|
|
|
read_only: true
|
|
|
|
cap_drop:
|
|
|
|
- ALL
|
2019-07-01 16:26:12 +02:00
|
|
|
|
2019-07-09 18:05:05 +02:00
|
|
|
searx-checker:
|
|
|
|
container_name: searx-checker
|
|
|
|
image: searx/searx-checker
|
|
|
|
restart: always
|
|
|
|
networks:
|
2020-04-10 10:45:58 +02:00
|
|
|
- searx
|
|
|
|
command: -cron -o html/data/status.json http://searx:8080
|
2019-07-09 18:05:05 +02:00
|
|
|
volumes:
|
|
|
|
- searx-checker:/usr/local/searx-checker/html/data:rw
|
|
|
|
|
2019-07-01 16:26:12 +02:00
|
|
|
networks:
|
|
|
|
searx:
|
|
|
|
ipam:
|
|
|
|
driver: default
|
2019-07-09 18:05:05 +02:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
searx-checker:
|
2020-07-13 08:12:32 +02:00
|
|
|
caddy-data:
|
|
|
|
caddy-config:
|