0
0

Switched to Valkey as Redis database

This commit is contained in:
Opnxng 2024-05-25 06:59:42 +08:00
parent 92f333186d
commit 153a3efb55
2 changed files with 7 additions and 1 deletions

View File

@ -44,6 +44,7 @@ Source | Image
[Xyphyn/photon](https://github.com/Xyphyn/photon) | Xyphyn/photon
[Ahwxorg/Binternet](https://github.com/Ahwxorg/binternet/) | ahwxorg/binternet
[gothub/gothub](https://codeberg.org/gothub/gothub) | gothub/gothub
[valkey-io/valkey-container](https://github.com/valkey-io/valkey-container) | valkey/valkey
[go-gitea/gitea](https://github.com/go-gitea/gitea) | gitea/gitea (with [Rainnny7/gitea-github-theme](https://github.com/Rainnny7/gitea-github-theme))
[gitea/act_runner](https://gitea.com/gitea/act_runner) | gitea/act_runner
[binwiederhier/ntfy](https://github.com/binwiederhier/ntfy) | binwiederhier/ntfy

View File

@ -1,4 +1,9 @@
FROM docker.io/searxng/searxng:latest
# copy custom simple theme css from the PaulGo fork
# copy custom simple theme css and limiter.toml from the PaulGo fork
COPY --from=docker.io/paulgoio/searxng:production /etc/searxng/limiter.toml /etc/searxng/limiter.toml
COPY --from=docker.io/paulgoio/searxng:production /usr/local/searxng/searx/static/themes/ /usr/local/searxng/searx/static/themes/
# Compile into .pyc. (Static files are already precompiled in the source images)
WORKDIR /usr/local/searxng
RUN su searxng -c "/usr/bin/python3 -m compileall -q searx";