mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-15 00:14:59 +00:00
35 lines
833 B
TOML
35 lines
833 B
TOML
[services.searx]
|
|
container_name = "searx"
|
|
image = "searxng/searxng"
|
|
restart = "unless-stopped"
|
|
networks = ["searx", "proxy"]
|
|
volumes = [
|
|
"/docker/searx:/etc/searxng",
|
|
#"/docker/searx/logo.png:/usr/local/searxng/searx/static/themes/simple/img/searxng.png:ro"
|
|
]
|
|
environment = ["SEARXNG_BASE_URL=https://search.korhonen.cc/"]
|
|
cap_drop = ["ALL"]
|
|
cap_add = ["CHOWN", "SETGID", "SETUID", "DAC_OVERRIDE"]
|
|
|
|
[services.searx.logging]
|
|
driver = "json-file"
|
|
|
|
[services.searx.logging.options]
|
|
max-size = "1m"
|
|
max-file = "1"
|
|
|
|
[services.redis]
|
|
container_name = "redis-searx"
|
|
image = "redis:alpine"
|
|
command = "redis-server --save \"\" --appendonly \"no\""
|
|
networks = ["searx"]
|
|
tmpfs = ["/var/lib/redis"]
|
|
cap_drop = ["ALL"]
|
|
cap_add = ["SETGID", "SETUID", "DAC_OVERRIDE"]
|
|
|
|
[networks.searx.ipam]
|
|
driver = "default"
|
|
|
|
[networks.proxy]
|
|
external = true
|