deploy1 7 yıl önce
ebeveyn
işleme
f8fac22f8d
3 değiştirilmiş dosya ile 10 ekleme ve 5 silme
  1. 4 1
      CHANGELOG
  2. 3 3
      CloudronManifest.json
  3. 3 1
      Dockerfile

+ 4 - 1
CHANGELOG

@@ -1,2 +1,5 @@
-[0.1.0]
+[0.0.4]
+* upgrade to v0.14.0
+
+[0.0.0]
 * Initial version

+ 3 - 3
CloudronManifest.json

@@ -1,11 +1,11 @@
 {
-  "id": "org.cirnoq.searx",
+  "id": "alt.org.cirnoq.searx",
   "title": "Searx",
   "author": "Searx developers",
   "description": "file://DESCRIPTION.md",
   "changelog": "file://CHANGELOG",
   "tagline": "Privacy-respecting metasearch engine",
-  "version": "0.0.3",
+  "version": "0.0.4",
   "healthCheckPath": "/",
   "httpPort": 8888,
   "addons": {
@@ -13,7 +13,7 @@
   },
   "manifestVersion": 1,
   "website": "https://asciimoo.github.io/searx/",
-  "contactEmail": "support@cloudron.io",
+  "contactEmail": "boot@ogi.dk",
   "icon": "file://logo.png",
   "tags": [
     "search", "metasearch"

+ 3 - 1
Dockerfile

@@ -6,7 +6,7 @@ WORKDIR /app/code
 
 RUN apt update && apt install -y python build-essential libxslt-dev python-dev python-virtualenv python-pybabel zlib1g-dev libffi-dev libssl-dev python-pip
 RUN pip install --no-cache -r https://raw.githubusercontent.com/asciimoo/searx/master/requirements.txt
-RUN curl -L https://github.com/asciimoo/searx/archive/master.tar.gz | tar -xz --strip-components 1 -f -
+RUN curl -L https://github.com/asciimoo/searx/archive/v0.14.0.tar.gz | tar -xz --strip-components 1 -f -
 RUN mv /app/code/searx/settings.yml /app/code/searx/settings.yml.orig
 RUN ln -sf /app/data/settings.yml /app/code/searx/settings.yml
 
@@ -17,3 +17,5 @@ EXPOSE 8888
 ADD start_searx.sh /app/
 
 CMD [ "/app/start_searx.sh" ]
+
+