diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2025-05-16 11:16:41 +0200 |
|---|---|---|
| committer | Ivan Gabaldon <igabaldon@inetol.net> | 2025-05-20 11:49:30 +0200 |
| commit | 749de829d5bad6a05ebe1a733a6bd942c1a386ec (patch) | |
| tree | 95c26e4fb534f8f4926a3c367a047a4dae537a29 /docs | |
| parent | a195f5241262c71637d29d6fe5d18792eabe5a4d (diff) | |
[mod] container: refactor entrypoint script
That entrypoint is prone to screw things up, especially with permission handling. The new script handles initialization better and fixes some issues like delayed settings update via ENVs and timestamp overwriting, also adjusts what should be copied into the container.
Related https://github.com/searxng/searxng/pull/4721#issuecomment-2850272129
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/admin/installation-docker.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/admin/installation-docker.rst b/docs/admin/installation-docker.rst index 06b3fe465..cdbe1608f 100644 --- a/docs/admin/installation-docker.rst +++ b/docs/admin/installation-docker.rst @@ -181,10 +181,10 @@ Command line <https://docs.docker.com/engine/reference/run/#foreground>`__. In the :origin:`Dockerfile` the ENTRYPOINT_ is defined as -:origin:`container/docker-entrypoint.sh` +:origin:`container/entrypoint.sh` .. code:: sh docker run --rm -it searxng/searxng -h -.. program-output:: ../container/docker-entrypoint.sh -h +.. program-output:: ../container/entrypoint.sh -h |