mirror of
https://github.com/searxng/searxng-docker.git
synced 2025-02-17 02:40:04 +00:00
* Use docker image caddy/caddy:2-alpine * Caddyfile: remove "limits 10KB" * Caddyfile: URL /filtron/rules removes (filtron API still availabled on http://localhost:4041/rules ) * .env: Remove SEARX_PROTOCOL, SEARX_TLS, FILTRON_USER and FILTRON_PASSWORD variables. * docker-compose.yml: filtron and morty listen on 127.0.0.1
11 lines
218 B
Bash
Executable File
11 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BASE_DIR="$(dirname -- "`readlink -f -- "$0"`")"
|
|
cd -- "$BASE_DIR"
|
|
|
|
. ./util.sh
|
|
|
|
$DOCKERCOMPOSE -f $DOCKERCOMPOSEFILE down
|
|
$DOCKERCOMPOSE -f $DOCKERCOMPOSEFILE rm -fv
|
|
$DOCKERCOMPOSE -f $DOCKERCOMPOSEFILE up
|