summaryrefslogtreecommitdiff
path: root/docs/admin/installation-docker.rst
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2020-06-19 04:51:02 +0000
committerGitHub <noreply@github.com>2020-06-19 04:51:02 +0000
commitca1c3bd15d60faf235894cb4f6f3a15150e3a6c3 (patch)
treef951cabe1e0140ee5476c33b7703746285fa5ea0 /docs/admin/installation-docker.rst
parentcc721b5d864bcc0bf58d29337aaa1ec774bd70b5 (diff)
parentc83007a6bcd2a7f765e7655b91cc6714fbc4ab01 (diff)
Merge branch 'master' into csp-oscar-theme
Diffstat (limited to 'docs/admin/installation-docker.rst')
-rw-r--r--docs/admin/installation-docker.rst28
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/admin/installation-docker.rst b/docs/admin/installation-docker.rst
new file mode 100644
index 000000000..340e66319
--- /dev/null
+++ b/docs/admin/installation-docker.rst
@@ -0,0 +1,28 @@
+.. _installation docker:
+
+===================
+Docker installation
+===================
+
+.. contents:: Contents
+ :depth: 2
+ :local:
+ :backlinks: entry
+
+Make sure you have installed Docker. For instance, you can deploy searx like this:
+
+.. code:: sh
+
+ docker pull wonderfall/searx
+ docker run -d --name searx -p $PORT:8888 wonderfall/searx
+
+Go to ``http://localhost:$PORT``.
+
+See https://hub.docker.com/r/wonderfall/searx/ for more informations. It's also
+possible to build searx from the embedded Dockerfile.
+
+.. code:: sh
+
+ git clone https://github.com/asciimoo/searx.git
+ cd searx
+ docker build -t whatever/searx .