summaryrefslogtreecommitdiff
path: root/docs/admin/installation-docker.rst
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-04-30 16:20:33 +0200
committerGitHub <noreply@github.com>2021-04-30 16:20:33 +0200
commit0ff14fd3ecc6f7669d2148c0e90b8b15bf763038 (patch)
treed6303520a5c95cc735bd6db611f0ff6e5a1b80e2 /docs/admin/installation-docker.rst
parente5bcc3cbbecb067b0acd8a7c061d9a16453381ed (diff)
parent20580bcbd458fa18c13bb9c1a32466ee5af48f97 (diff)
Merge pull request #22 from searxng/docker-buildx
[docker] multiarch build
Diffstat (limited to 'docs/admin/installation-docker.rst')
-rw-r--r--docs/admin/installation-docker.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/admin/installation-docker.rst b/docs/admin/installation-docker.rst
index 13d21bc46..120c9cb08 100644
--- a/docs/admin/installation-docker.rst
+++ b/docs/admin/installation-docker.rst
@@ -11,19 +11,19 @@ Docker installation
----
-Docker image searx/searx
-========================
+Docker image searxng/searxng
+============================
-The docker image is `searx/searx <https://hub.docker.com/r/searx/searx>`_ (based on `github.com/searx/searx <https://github.com/searx/searx>`_).
+The docker image is `searxng/searxng <https://hub.docker.com/r/searxng/searxng>`_ (based on `github.com/searxng/searxng <https://github.com/searxng/searxng>`_).
Make sure you have `installed Docker <https://docs.docker.com/get-docker/>`_. For instance, you can deploy a local instance:
.. code:: sh
export PORT=80
- docker pull searx/searx
- docker run --rm -d -v ${PWD}/searx:/etc/searx -p $PORT:8080 -e BASE_URL=http://localhost:$PORT/ searx/searx
+ docker pull searxng/searxng
+ docker run --rm -d -v ${PWD}/searx:/etc/searx -p $PORT:8080 -e BASE_URL=http://localhost:$PORT/ searxng/searxng
Go to ``http://localhost:$PORT``.
@@ -37,7 +37,7 @@ Command line
.. code:: sh
- docker run --rm -it searx/searx -h
+ docker run --rm -it searxng/searxng -h
.. program-output:: ../dockerfiles/docker-entrypoint.sh help
@@ -45,11 +45,11 @@ Command line
Build the image
---------------
-It's also possible to build searx from the embedded Dockerfile.
+It's also possible to build SearXNG from the embedded Dockerfile.
.. code:: sh
- git clone https://github.com/searx/searx.git
+ git clone https://github.com/searxng/searxng.git
cd searx
make docker.build