diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-02 19:00:19 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-03-02 19:00:19 +0100 |
commit | c3e4753ce951f759844db13d98f9ad5b226f84b6 (patch) | |
tree | 70841eec657c248ffd2048c4175d80cd4a345508 /docs/admin/installation-docker.rst | |
parent | 491cb95a1f910e17ac022ddfa73b68aae2fbc6e2 (diff) | |
download | searxng-c3e4753ce951f759844db13d98f9ad5b226f84b6.tar.gz searxng-c3e4753ce951f759844db13d98f9ad5b226f84b6.zip |
docs: generic documentation from the installation scripts
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'docs/admin/installation-docker.rst')
-rw-r--r-- | docs/admin/installation-docker.rst | 28 |
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 . |