downgraded searx to v0.17.0
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5779629d12
commit
4f7f3c6313
3 changed files with 25 additions and 3 deletions
12
.drone.yml
12
.drone.yml
|
@ -17,6 +17,9 @@ steps:
|
||||||
repo: spcodes/searx
|
repo: spcodes/searx
|
||||||
build_args:
|
build_args:
|
||||||
- ARCH=amd64
|
- ARCH=amd64
|
||||||
|
tags:
|
||||||
|
- "v0.17.0"
|
||||||
|
- "latest"
|
||||||
username:
|
username:
|
||||||
from_secret: USERNAME
|
from_secret: USERNAME
|
||||||
password:
|
password:
|
||||||
|
@ -48,6 +51,9 @@ steps:
|
||||||
repo: spcodes/searx
|
repo: spcodes/searx
|
||||||
build_args:
|
build_args:
|
||||||
- ARCH=arm
|
- ARCH=arm
|
||||||
|
tags:
|
||||||
|
- "v0.17.0"
|
||||||
|
- "latest"
|
||||||
username:
|
username:
|
||||||
from_secret: USERNAME
|
from_secret: USERNAME
|
||||||
password:
|
password:
|
||||||
|
@ -79,6 +85,9 @@ steps:
|
||||||
repo: spcodes/searx
|
repo: spcodes/searx
|
||||||
build_args:
|
build_args:
|
||||||
- ARCH=arm64
|
- ARCH=arm64
|
||||||
|
tags:
|
||||||
|
- "v0.17.0"
|
||||||
|
- "latest"
|
||||||
username:
|
username:
|
||||||
from_secret: USERNAME
|
from_secret: USERNAME
|
||||||
password:
|
password:
|
||||||
|
@ -107,6 +116,9 @@ steps:
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/arm
|
- linux/arm
|
||||||
|
tags:
|
||||||
|
- "v0.17.0"
|
||||||
|
- "latest"
|
||||||
username:
|
username:
|
||||||
from_secret: USERNAME
|
from_secret: USERNAME
|
||||||
password:
|
password:
|
||||||
|
|
|
@ -11,7 +11,7 @@ VOLUME /var/log/uwsgi
|
||||||
|
|
||||||
RUN addgroup searx && adduser -D -h /usr/local/searx -s /bin/sh -G searx searx
|
RUN addgroup searx && adduser -D -h /usr/local/searx -s /bin/sh -G searx searx
|
||||||
|
|
||||||
ENV SEARX_VERSION="v0.18.0"
|
ENV SEARX_VERSION="v0.17.0"
|
||||||
ENV INSTANCE_NAME=searx
|
ENV INSTANCE_NAME=searx
|
||||||
|
|
||||||
WORKDIR /usr/local/searx
|
WORKDIR /usr/local/searx
|
||||||
|
|
|
@ -10,10 +10,12 @@
|
||||||
"regexManagers": [
|
"regexManagers": [
|
||||||
{
|
{
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
"^Dockerfile$"
|
"^Dockerfile$",
|
||||||
|
"^.drone.yml$"
|
||||||
],
|
],
|
||||||
"matchStrings": [
|
"matchStrings": [
|
||||||
"\\s*ENV\\s*SEARX_VERSION=\"(?<currentValue>.*?)\"\\s*"
|
"\\s*ENV\\s*SEARX_VERSION=\"(?<currentValue>.*?)\"\\s*",
|
||||||
|
"\\s*tags:\\s*-\\s*\"(?<currentValue>.*?)\"\\s*"
|
||||||
],
|
],
|
||||||
"versioningTemplate": "loose",
|
"versioningTemplate": "loose",
|
||||||
"depNameTemplate": "searx/searx",
|
"depNameTemplate": "searx/searx",
|
||||||
|
@ -32,6 +34,14 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"datasources": [
|
||||||
|
"github-releases"
|
||||||
|
],
|
||||||
|
"groupName": [
|
||||||
|
"searx"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"datasources": [
|
"datasources": [
|
||||||
"repology"
|
"repology"
|
||||||
|
|
Reference in a new issue