installation-docker.rst 635 B

12345678910111213141516171819202122232425262728
  1. .. _installation docker:
  2. ===================
  3. Docker installation
  4. ===================
  5. .. contents:: Contents
  6. :depth: 2
  7. :local:
  8. :backlinks: entry
  9. Make sure you have installed Docker. For instance, you can deploy searx like this:
  10. .. code:: sh
  11. docker pull wonderfall/searx
  12. docker run -d --name searx -p $PORT:8888 wonderfall/searx
  13. Go to ``http://localhost:$PORT``.
  14. See https://hub.docker.com/r/wonderfall/searx/ for more informations. It's also
  15. possible to build searx from the embedded Dockerfile.
  16. .. code:: sh
  17. git clone https://github.com/asciimoo/searx.git
  18. cd searx
  19. docker build -t whatever/searx .