diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-10-21 12:03:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-21 12:03:10 +0200 |
| commit | cec9ded2e664da501955396a2d6c438ae8c117f3 (patch) | |
| tree | 0629ac7011e3454d7a278fcab7561c1dff0bfe94 /docs | |
| parent | cab98ed6c72025fa6020dede51068b787726d743 (diff) | |
| parent | 9e03823b98c83e6259197fbfb4bd22db9601d1d5 (diff) | |
Merge pull request #383 from dalf/searxng-docker
SearXNG: docker
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/admin/installation-docker.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/admin/installation-docker.rst b/docs/admin/installation-docker.rst index 33524e2f2..ecf9c833f 100644 --- a/docs/admin/installation-docker.rst +++ b/docs/admin/installation-docker.rst @@ -63,7 +63,7 @@ instance using `docker run <https://docs.docker.com/engine/reference/run/>`_: $ docker pull searxng/searxng $ docker run --rm \ -d -p ${PORT}:8080 \ - -v "${PWD}/searx:/etc/searx" \ + -v "${PWD}/searxng:/etc/searxng" \ -e "BASE_URL=http://localhost:$PORT/" \ -e "INSTANCE_NAME=my-instance" \ searxng/searxng @@ -75,7 +75,7 @@ Open your WEB browser and visit the URL: $ xdg-open "http://localhost:$PORT" -Inside ``${PWD}/searx``, you will find ``settings.yml`` and ``uwsgi.ini``. You +Inside ``${PWD}/searxng``, you will find ``settings.yml`` and ``uwsgi.ini``. You can modify these files according to your needs and restart the Docker image. .. code:: sh @@ -139,7 +139,7 @@ Build the image It's also possible to build SearXNG from the embedded :origin:`Dockerfile`:: $ git clone https://github.com/searxng/searxng.git - $ cd searx + $ cd searxng $ make docker.build ... Successfully built 49586c016434 |