searxng / searxng-docker
- среда, 6 июля 2022 г. в 00:35:18
The docker-compose files for setting up a SearXNG instance with docker.
Create a new SearXNG instance in five minutes using Docker
| Name | Description | Docker image | Dockerfile |
|---|---|---|---|
| Caddy | Reverse proxy (create a LetsEncrypt certificate automatically) | caddy/caddy:2-alpine | Dockerfile |
| SearXNG | SearXNG by itself | searxng/searxng:latest | Dockerfile |
| Redis | In-memory database | redis:alpine | Dockerfile-alpine.template |
cd /usr/local
git clone https://github.com/searxng/searxng-docker.git
cd searxng-dockersed -i "s|ultrasecretkey|$(openssl rand -hex 32)|g" searxng/settings.ymldocker-compose updocker-compose up -dYou can skip this step if you don't use systemd.
cp searxng-docker.service.template searxng-docker.serviceWorkingDirectory in the searxng-docker.service file (only if the installation path is different from /usr/local/searxng-docker)systemctl enable $(pwd)/searxng-docker.service
systemctl start searxng-docker.serviceThe SearXNG image proxy is activated by default.
The default Content-Security-Policy allow the browser to access to ${SEARXNG_HOSTNAME} and https://*.tile.openstreetmap.org;.
If some users wants to disable the image proxy, you have to modify ./Caddyfile. Replace the img-src 'self' data: https://*.tile.openstreetmap.org; by img-src * data:;.
Supported architecture:
To update the SearXNG stack:
docker-compose pull
docker-compose down
docker-compose upTo update this docker-compose.yml file:
Check out the newest version on github: searxng/searxng-docker.