2021-06-04 12:16:02 +00:00
|
|
|
.. _lxcdev:
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
==============================
|
|
|
|
Developing in Linux Containers
|
|
|
|
==============================
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. _LXC: https://linuxcontainers.org/lxc/introduction/
|
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
In this article we will show, how you can make use of Linux Containers (LXC_) in
|
|
|
|
*distributed and heterogeneous development cycles* (TL;DR; jump to the
|
|
|
|
:ref:`lxcdev summary`).
|
|
|
|
|
2020-06-24 15:49:38 +00:00
|
|
|
.. sidebar:: Audience
|
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
This blog post is written for experienced admins and developers. Readers
|
|
|
|
should have a serious meaning about the terms: *distributed*, *merge* and
|
|
|
|
*linux container*.
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. contents:: Contents
|
|
|
|
:depth: 2
|
|
|
|
:local:
|
|
|
|
:backlinks: entry
|
|
|
|
|
|
|
|
|
|
|
|
Motivation
|
|
|
|
==========
|
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
Usually in our development cycle, we edit the sources and run some test and/or
|
|
|
|
builds by using ``make`` :ref:`[ref] <makefile>` before we commit. This cycle
|
|
|
|
is simple and perfect but might fail in some aspects we should not overlook.
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
**The environment in which we run all our development processes matters!**
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
The :ref:`makefile` and the :ref:`make install` encapsulate a lot for us, but
|
|
|
|
they do not have access to all prerequisites. For example, there may have
|
2020-06-24 15:49:38 +00:00
|
|
|
dependencies on packages that are installed on the developer's desktop, but
|
2021-06-04 12:16:02 +00:00
|
|
|
usually are not preinstalled on a server or client system. Another example is;
|
|
|
|
settings have been made to the software on developer's desktop that would never
|
|
|
|
be set on a *production* system.
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
**Linux Containers are isolate environments and not to mix up all the
|
|
|
|
prerequisites from various projects on developer's desktop is always a good
|
|
|
|
choice.**
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
The scripts from :ref:`searx_utils` can divide in those to install and maintain
|
2020-06-24 15:49:38 +00:00
|
|
|
software:
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
- :ref:`searxng.sh`
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
and the script :ref:`lxc.sh`, with we can scale our installation, maintenance or
|
2021-06-04 12:16:02 +00:00
|
|
|
even development tasks over a stack of isolated containers / what we call the:
|
|
|
|
|
2021-09-12 06:36:56 +00:00
|
|
|
**SearXNG LXC suite**
|
2021-06-23 10:39:49 +00:00
|
|
|
|
|
|
|
.. hint::
|
|
|
|
|
|
|
|
If you see any problems with the internet connectivity of your
|
|
|
|
containers read section :ref:`internet connectivity docker`.
|
2021-06-04 12:16:02 +00:00
|
|
|
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
Gentlemen, start your engines!
|
|
|
|
==============================
|
|
|
|
|
|
|
|
.. _LXD: https://linuxcontainers.org/lxd/introduction/
|
|
|
|
.. _archlinux: https://www.archlinux.org/
|
|
|
|
|
|
|
|
Before you can start with containers, you need to install and initiate LXD_
|
|
|
|
once:
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
$ snap install lxd
|
|
|
|
$ lxd init --auto
|
|
|
|
|
|
|
|
And you need to clone from origin or if you have your own fork, clone from your
|
|
|
|
fork:
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
$ cd ~/Downloads
|
2021-11-18 17:27:26 +00:00
|
|
|
$ git clone https://github.com/searxng/searxng.git searxng
|
|
|
|
$ cd searxng
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-05-27 16:43:14 +00:00
|
|
|
The :ref:`lxc-searxng.env` consists of several images, see ``export
|
|
|
|
LXC_SUITE=(...`` near by :origin:`utils/lxc-searxng.env#L19`. For this blog post
|
2020-06-24 15:49:38 +00:00
|
|
|
we exercise on a archlinux_ image. The container of this image is named
|
2022-06-14 08:02:50 +00:00
|
|
|
``searxng-archlinux``. Lets build the container, but be sure that this container
|
2020-06-24 15:49:38 +00:00
|
|
|
does not already exists, so first lets remove possible old one:
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh remove searxng-archlinux
|
|
|
|
$ sudo -H ./utils/lxc.sh build searxng-archlinux
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. sidebar:: The ``searxng-archlinux`` container
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
is the base of all our exercises here.
|
|
|
|
|
|
|
|
In this container we install all services :ref:`including searx, morty & filtron
|
|
|
|
<lxc.sh install suite>` in once:
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh install suite searxng-archlinux
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
To proxy HTTP from filtron and morty in the container to the outside of the
|
|
|
|
container, install nginx into the container. Once for the bot blocker filtron:
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
2020-06-24 15:49:38 +00:00
|
|
|
./utils/filtron.sh nginx install
|
|
|
|
...
|
|
|
|
INFO: got 429 from http://10.174.184.156/searx
|
|
|
|
|
|
|
|
and once for the content sanitizer (content proxy morty):
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
2020-06-24 15:49:38 +00:00
|
|
|
./utils/morty.sh nginx install
|
|
|
|
...
|
|
|
|
INFO: got 200 from http://10.174.184.156/morty/
|
|
|
|
|
2021-07-31 16:19:00 +00:00
|
|
|
.. sidebar:: Fully functional SearXNG suite
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-07-31 16:19:00 +00:00
|
|
|
From here on you have a fully functional SearXNG suite running with bot
|
2021-06-04 12:16:02 +00:00
|
|
|
blocker (filtron) and WEB content sanitizer (content proxy morty), both are
|
|
|
|
needed for a *privacy protecting* search engine.
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
On your system, the IP of your ``searxng-archlinux`` container differs from
|
2020-06-24 15:49:38 +00:00
|
|
|
http://10.174.184.156/searx, just open the URL reported in your installation
|
|
|
|
protocol in your WEB browser from the desktop to test the instance from outside
|
|
|
|
of the container.
|
|
|
|
|
2021-07-31 16:19:00 +00:00
|
|
|
In such a earXNG suite admins can maintain and access the debug log of the
|
2020-06-24 15:49:38 +00:00
|
|
|
different services quite easy.
|
|
|
|
|
|
|
|
.. _working in containers:
|
|
|
|
|
|
|
|
In containers, work as usual
|
|
|
|
============================
|
|
|
|
|
|
|
|
Usually you open a root-bash using ``sudo -H bash``. In case of LXC containers
|
|
|
|
open the root-bash in the container using ``./utils/lxc.sh cmd
|
2022-06-14 08:02:50 +00:00
|
|
|
searxng-archlinux``:
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux bash
|
|
|
|
INFO: [searxng-archlinux] bash
|
|
|
|
[root@searxng-archlinux searx]# pwd
|
2021-11-18 17:27:26 +00:00
|
|
|
/share/searxng
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
The prompt ``[root@searxng-archlinux ...]`` signals, that you are the root user in
|
|
|
|
the searxng-container. To debug the running SearXNG instance use:
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. group-tab:: root@searxng-archlinux
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
$ ./utils/searx.sh inspect service
|
|
|
|
...
|
|
|
|
use [CTRL-C] to stop monitoring the log
|
|
|
|
...
|
|
|
|
|
|
|
|
Back in the browser on your desktop open the service http://10.174.184.156/searx
|
|
|
|
and run your application tests while the debug log is shown in the terminal from
|
|
|
|
above. You can stop monitoring using ``CTRL-C``, this also disables the *"debug
|
2021-07-31 16:19:00 +00:00
|
|
|
option"* in SearXNG's settings file and restarts the SearXNG uwsgi application.
|
2021-06-04 12:16:02 +00:00
|
|
|
To debug services from filtron and morty analogous use:
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
Another point we have to notice is that the service (:ref:`SearXNG <searxng.sh>`
|
|
|
|
runs under dedicated system user account with the same name (compare
|
2022-09-27 15:01:00 +00:00
|
|
|
:ref:`create searxng user`). To get a shell from these accounts, simply call:
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. group-tab:: root@searxng-archlinux
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ ./utils/searxng.sh instance cmd bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
To get in touch, open a shell from the service user (searxng@searxng-archlinux):
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux ./utils/searxng.sh instance cmd bash
|
|
|
|
INFO: [searxng-archlinux] ./utils/searxng.sh instance cmd bash
|
|
|
|
[searxng@searxng-archlinux ~]$
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
The prompt ``[searxng@searxng-archlinux]`` signals that you are logged in as system
|
|
|
|
user ``searx`` in the ``searxng-archlinux`` container and the python *virtualenv*
|
|
|
|
``(searxng-pyenv)`` environment is activated.
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. group-tab:: searxng@searxng-archlinux
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
(searxng-pyenv) [searxng@searxng-archlinux ~]$ pwd
|
|
|
|
/usr/local/searxng
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
Wrap production into developer suite
|
|
|
|
====================================
|
|
|
|
|
2021-07-31 16:19:00 +00:00
|
|
|
In this section we will see how to change the *"Fully functional SearXNG suite"*
|
2020-06-24 15:49:38 +00:00
|
|
|
from a LXC container (which is quite ready for production) into a developer
|
|
|
|
suite. For this, we have to keep an eye on the :ref:`installation basic`:
|
|
|
|
|
2021-10-11 08:56:50 +00:00
|
|
|
- SearXNG setup in: ``/etc/searxng/settings.yml``
|
2022-06-14 08:02:50 +00:00
|
|
|
- SearXNG user's home: ``/usr/local/searxng``
|
|
|
|
- virtualenv in: ``/usr/local/searxng/searxng-pyenv``
|
|
|
|
- SearXNG software in: ``/usr/local/searxng/searxng-src``
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
With the use of the :ref:`searxng.sh` the SearXNG service was installed as
|
2021-11-18 17:27:26 +00:00
|
|
|
:ref:`uWSGI application <searxng uwsgi>`. To maintain this service, we can use
|
2022-06-14 08:02:50 +00:00
|
|
|
``systemctl`` (compare :ref:`uWSGI maintenance`).
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
|
|
|
systemctl stop uwsgi@searxng
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-09-12 06:36:56 +00:00
|
|
|
With the command above, we stopped the SearXNG uWSGI-App in the archlinux
|
2020-06-24 15:49:38 +00:00
|
|
|
container.
|
|
|
|
|
|
|
|
The uWSGI-App for the archlinux dsitros is configured in
|
2021-10-11 19:20:22 +00:00
|
|
|
:origin:`utils/templates/etc/uwsgi/apps-archlinux/searxng.ini`, from where at
|
2020-06-24 15:49:38 +00:00
|
|
|
least you should attend the settings of ``uid``, ``chdir``, ``env`` and
|
|
|
|
``http``::
|
|
|
|
|
2021-10-11 08:56:50 +00:00
|
|
|
env = SEARXNG_SETTINGS_PATH=/etc/searxng/settings.yml
|
2020-06-24 15:49:38 +00:00
|
|
|
http = 127.0.0.1:8888
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
chdir = /usr/local/searxng/searxng-src/searx
|
|
|
|
virtualenv = /usr/local/searxng/searxng-pyenv
|
|
|
|
pythonpath = /usr/local/searxng/searxng-src
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
If you have read the :ref:`"Good to know section" <lxc.sh>` you remember, that
|
|
|
|
each container shares the root folder of the repository and the command
|
|
|
|
``utils/lxc.sh cmd`` handles relative path names **transparent**. To wrap the
|
2021-07-31 16:19:00 +00:00
|
|
|
SearXNG installation into a developer one, we simple have to create a smylink to
|
2020-06-24 15:49:38 +00:00
|
|
|
the **transparent** reposetory from the desktop. Now lets replace the
|
2022-06-14 08:02:50 +00:00
|
|
|
repository at ``searxng-src`` in the container with the working tree from outside
|
2020-06-24 15:49:38 +00:00
|
|
|
of the container:
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: container becomes a developer suite
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
|
|
|
mv /usr/local/searxng/searxng-src /usr/local/searxng/searxng-src.old
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
|
|
|
ln -s /share/searx/ /usr/local/searxng/searxng-src
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
Now we can develop as usual in the working tree of our desktop system. Every
|
2021-09-12 06:36:56 +00:00
|
|
|
time the software was changed, you have to restart the SearXNG service (in the
|
2022-09-27 15:01:00 +00:00
|
|
|
container):
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
2020-06-24 15:49:38 +00:00
|
|
|
systemctl restart uwsgi@searx
|
|
|
|
|
|
|
|
|
|
|
|
Remember: :ref:`working in containers` .. here are just some examples from my
|
|
|
|
daily usage:
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2021-07-31 16:19:00 +00:00
|
|
|
To *inspect* the SearXNG instance (already described above):
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
2020-06-24 15:49:38 +00:00
|
|
|
./utils/searx.sh inspect service
|
|
|
|
|
|
|
|
Run :ref:`makefile`, e.g. to test inside the container:
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
2020-06-24 15:49:38 +00:00
|
|
|
make test
|
|
|
|
|
|
|
|
To install all prerequisites needed for a :ref:`buildhosts`:
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
|
|
|
./utils/searxng.sh install buildhost
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
To build the docs on a buildhost :ref:`buildhosts`:
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh cmd searxng-archlinux \
|
2021-04-18 10:12:03 +00:00
|
|
|
make docs.html
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
.. _lxcdev summary:
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
Summary
|
|
|
|
=======
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2021-07-31 16:19:00 +00:00
|
|
|
We build up a fully functional SearXNG suite in a archlinux container:
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh install suite searxng-archlinux
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
To access HTTP from the desktop we installed nginx for the services inside the
|
2022-09-27 15:01:00 +00:00
|
|
|
container:
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. group-tab:: [root@searxng-archlinux]
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
$ ./utils/filtron.sh nginx install
|
|
|
|
$ ./utils/morty.sh nginx install
|
|
|
|
|
|
|
|
To wrap the suite into a developer one, we created a symbolic link to the
|
|
|
|
repository which is shared **transparent** from the desktop's file system into
|
|
|
|
the container :
|
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. group-tab:: [root@searxng-archlinux]
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ mv /usr/local/searxng/searxng-src /usr/local/searxng/searxng-src.old
|
|
|
|
$ ln -s /share/searx/ /usr/local/searxng/searxng-src
|
2020-06-24 15:49:38 +00:00
|
|
|
$ systemctl restart uwsgi@searx
|
|
|
|
|
2021-06-04 12:16:02 +00:00
|
|
|
To get information about the searxNG suite in the archlinux container we can
|
|
|
|
use:
|
2020-06-24 15:49:38 +00:00
|
|
|
|
|
|
|
.. tabs::
|
|
|
|
|
|
|
|
.. group-tab:: desktop
|
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
.. code:: bash
|
2020-06-24 15:49:38 +00:00
|
|
|
|
2022-06-14 08:02:50 +00:00
|
|
|
$ sudo -H ./utils/lxc.sh show suite searxng-archlinux
|
2020-06-24 15:49:38 +00:00
|
|
|
...
|
2022-06-14 08:02:50 +00:00
|
|
|
[searxng-archlinux] INFO: (eth0) filtron: http://10.174.184.156:4004/ http://10.174.184.156/searx
|
|
|
|
[searxng-archlinux] INFO: (eth0) morty: http://10.174.184.156:3000/
|
|
|
|
[searxng-archlinux] INFO: (eth0) docs.live: http://10.174.184.156:8080/
|
|
|
|
[searxng-archlinux] INFO: (eth0) IPv6: http://[fd42:573b:e0b3:e97e:216:3eff:fea5:9b65]
|
2020-06-24 15:49:38 +00:00
|
|
|
...
|
|
|
|
|