Compare commits

...

2 Commits

Author SHA1 Message Date
7508aac0a7 Update readme / compose.
Some checks failed
Integration / Python ${{ matrix.python-version }} (ubuntu-24.04, 3.10) (push) Has been cancelled
Integration / Python ${{ matrix.python-version }} (ubuntu-24.04, 3.11) (push) Has been cancelled
Integration / Python ${{ matrix.python-version }} (ubuntu-24.04, 3.12) (push) Has been cancelled
Integration / Python ${{ matrix.python-version }} (ubuntu-24.04, 3.13) (push) Has been cancelled
Integration / Python ${{ matrix.python-version }} (ubuntu-24.04, 3.9) (push) Has been cancelled
Integration / Themes (push) Has been cancelled
Integration / Documentation (push) Has been cancelled
Integration / Update translations branch (push) Has been cancelled
Integration / Docker (push) Has been cancelled
Checker / Checker (push) Has been cancelled
Update translations / create PR for additions from weblate (push) Has been cancelled
Security checks / Trivy ${{ matrix.image }} (push) Has been cancelled
Update searx.data / Update data - ${{ matrix.fetch }} (update_ahmia_blacklist.py) (push) Has been cancelled
Update searx.data / Update data - ${{ matrix.fetch }} (update_currencies.py) (push) Has been cancelled
Update searx.data / Update data - ${{ matrix.fetch }} (update_engine_descriptions.py) (push) Has been cancelled
Update searx.data / Update data - ${{ matrix.fetch }} (update_engine_traits.py) (push) Has been cancelled
Update searx.data / Update data - ${{ matrix.fetch }} (update_external_bangs.py) (push) Has been cancelled
Update searx.data / Update data - ${{ matrix.fetch }} (update_firefox_version.py) (push) Has been cancelled
Update searx.data / Update data - ${{ matrix.fetch }} (update_wikidata_units.py) (push) Has been cancelled
2025-02-12 00:06:15 +01:00
7d68a22cea Created a compose file. 2025-02-12 00:04:21 +01:00
2 changed files with 33 additions and 0 deletions

View File

@ -10,6 +10,10 @@
----
This is a clone of the original SearXNG project.
The only addition by retoor is the compose.yml file.
Running this server is just `docker compose up` and it will run on 127.0.0.1:8088.
Privacy-respecting, hackable `metasearch engine`_
Searx.space_ lists ready-to-use running instances.

29
compose.yml Normal file
View File

@ -0,0 +1,29 @@
services:
searxng:
build:
context: .
dockerfile: Dockerfile
args:
SEARXNG_GID: 977
SEARXNG_UID: 977
LABEL_DATE: ""
GIT_URL: "unknown"
SEARXNG_GIT_VERSION: "unknown"
SEARXNG_DOCKER_TAG: "unknown"
LABEL_VCS_REF: ""
LABEL_VCS_URL: ""
volumes:
- /etc/searxng
ports:
- "127.0.0.1:8088:8080"
environment:
INSTANCE_NAME: searxng
AUTOCOMPLETE: ""
BASE_URL: ""
MORTY_KEY: ""
MORTY_URL: ""
SEARXNG_SETTINGS_PATH: /etc/searxng/settings.yml
UWSGI_SETTINGS_PATH: /etc/searxng/uwsgi.ini
UWSGI_WORKERS: "%k"
UWSGI_THREADS: 4
entrypoint: ["/sbin/tini", "--", "/usr/local/searxng/dockerfiles/docker-entrypoint.sh"]