All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 10s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
225 B
Bash
9 lines
225 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
sed -e "s|\${BASE_URL}|${BASE_URL}|g" \
|
|
-e "s|\${SEARXNG_SECRET_KEY}|${SEARXNG_SECRET_KEY}|g" \
|
|
/searxng/settings.yml.template > /etc/searxng/settings.yml
|
|
|
|
exec /usr/local/searxng/entrypoint.sh "$@"
|