|
@@ -1,24 +1,25 @@
|
|
FROM alpine:3.14
|
|
FROM alpine:3.14
|
|
-ENTRYPOINT ["/sbin/tini","--","/usr/local/searx/dockerfiles/docker-entrypoint.sh"]
|
|
+ENTRYPOINT ["/sbin/tini","--","/usr/local/searxng/dockerfiles/docker-entrypoint.sh"]
|
|
EXPOSE 8080
|
|
EXPOSE 8080
|
|
VOLUME /etc/searx
|
|
VOLUME /etc/searx
|
|
|
|
+VOLUME /etc/searxng
|
|
VOLUME /var/log/uwsgi
|
|
VOLUME /var/log/uwsgi
|
|
|
|
|
|
-ARG SEARX_GID=977
|
|
+ARG SEARXNG_GID=977
|
|
-ARG SEARX_UID=977
|
|
+ARG SEARXNG_UID=977
|
|
|
|
|
|
-RUN addgroup -g ${SEARX_GID} searx && \
|
|
+RUN addgroup -g ${SEARXNG_GID} searxng && \
|
|
- adduser -u ${SEARX_UID} -D -h /usr/local/searx -s /bin/sh -G searx searx
|
|
+ adduser -u ${SEARXNG_UID} -D -h /usr/local/searxng -s /bin/sh -G searxng searxng
|
|
|
|
|
|
ENV INSTANCE_NAME=searxng \
|
|
ENV INSTANCE_NAME=searxng \
|
|
AUTOCOMPLETE= \
|
|
AUTOCOMPLETE= \
|
|
BASE_URL= \
|
|
BASE_URL= \
|
|
MORTY_KEY= \
|
|
MORTY_KEY= \
|
|
MORTY_URL= \
|
|
MORTY_URL= \
|
|
- SEARXNG_SETTINGS_PATH=/etc/searx/settings.yml \
|
|
+ SEARXNG_SETTINGS_PATH=/etc/searxng/settings.yml \
|
|
- UWSGI_SETTINGS_PATH=/etc/searx/uwsgi.ini
|
|
+ UWSGI_SETTINGS_PATH=/etc/searxng/uwsgi.ini
|
|
|
|
|
|
-WORKDIR /usr/local/searx
|
|
+WORKDIR /usr/local/searxng
|
|
|
|
|
|
|
|
|
|
COPY requirements.txt ./requirements.txt
|
|
COPY requirements.txt ./requirements.txt
|
|
@@ -51,38 +52,38 @@ RUN apk upgrade --no-cache \
|
|
&& apk del build-dependencies \
|
|
&& apk del build-dependencies \
|
|
&& rm -rf /root/.cache
|
|
&& rm -rf /root/.cache
|
|
|
|
|
|
-COPY --chown=searx:searx . .
|
|
+COPY --chown=searxng:searxng . .
|
|
|
|
|
|
ARG TIMESTAMP_SETTINGS=0
|
|
ARG TIMESTAMP_SETTINGS=0
|
|
ARG TIMESTAMP_UWSGI=0
|
|
ARG TIMESTAMP_UWSGI=0
|
|
ARG VERSION_GITCOMMIT=unknown
|
|
ARG VERSION_GITCOMMIT=unknown
|
|
|
|
|
|
-RUN su searx -c "/usr/bin/python3 -m compileall -q searx"; \
|
|
+RUN su searxng -c "/usr/bin/python3 -m compileall -q searx"; \
|
|
touch -c --date=@${TIMESTAMP_SETTINGS} searx/settings.yml; \
|
|
touch -c --date=@${TIMESTAMP_SETTINGS} searx/settings.yml; \
|
|
touch -c --date=@${TIMESTAMP_UWSGI} dockerfiles/uwsgi.ini; \
|
|
touch -c --date=@${TIMESTAMP_UWSGI} dockerfiles/uwsgi.ini; \
|
|
- find /usr/local/searx/searx/static -a \( -name '*.html' -o -name '*.css' -o -name '*.js' \
|
|
+ find /usr/local/searxng/searx/static -a \( -name '*.html' -o -name '*.css' -o -name '*.js' \
|
|
-o -name '*.svg' -o -name '*.ttf' -o -name '*.eot' \) \
|
|
-o -name '*.svg' -o -name '*.ttf' -o -name '*.eot' \) \
|
|
-type f -exec gzip -9 -k {} \+ -exec brotli --best {} \+
|
|
-type f -exec gzip -9 -k {} \+ -exec brotli --best {} \+
|
|
|
|
|
|
|
|
|
|
ARG LABEL_DATE=
|
|
ARG LABEL_DATE=
|
|
ARG GIT_URL=unknown
|
|
ARG GIT_URL=unknown
|
|
-ARG SEARX_GIT_VERSION=unknown
|
|
+ARG SEARXNG_GIT_VERSION=unknown
|
|
ARG LABEL_VCS_REF=
|
|
ARG LABEL_VCS_REF=
|
|
ARG LABEL_VCS_URL=
|
|
ARG LABEL_VCS_URL=
|
|
LABEL maintainer="searxng <${GIT_URL}>" \
|
|
LABEL maintainer="searxng <${GIT_URL}>" \
|
|
description="A privacy-respecting, hackable metasearch engine." \
|
|
description="A privacy-respecting, hackable metasearch engine." \
|
|
- version="${SEARX_GIT_VERSION}" \
|
|
+ version="${SEARXNG_GIT_VERSION}" \
|
|
org.label-schema.schema-version="1.0" \
|
|
org.label-schema.schema-version="1.0" \
|
|
org.label-schema.name="searxng" \
|
|
org.label-schema.name="searxng" \
|
|
- org.label-schema.version="${SEARX_GIT_VERSION}" \
|
|
+ org.label-schema.version="${SEARXNG_GIT_VERSION}" \
|
|
org.label-schema.url="${LABEL_VCS_URL}" \
|
|
org.label-schema.url="${LABEL_VCS_URL}" \
|
|
org.label-schema.vcs-ref=${LABEL_VCS_REF} \
|
|
org.label-schema.vcs-ref=${LABEL_VCS_REF} \
|
|
org.label-schema.vcs-url=${LABEL_VCS_URL} \
|
|
org.label-schema.vcs-url=${LABEL_VCS_URL} \
|
|
org.label-schema.build-date="${LABEL_DATE}" \
|
|
org.label-schema.build-date="${LABEL_DATE}" \
|
|
org.label-schema.usage="https://github.com/searxng/searxng-docker" \
|
|
org.label-schema.usage="https://github.com/searxng/searxng-docker" \
|
|
org.opencontainers.image.title="searxng" \
|
|
org.opencontainers.image.title="searxng" \
|
|
- org.opencontainers.image.version="${SEARX_GIT_VERSION}" \
|
|
+ org.opencontainers.image.version="${SEARXNG_GIT_VERSION}" \
|
|
org.opencontainers.image.url="${LABEL_VCS_URL}" \
|
|
org.opencontainers.image.url="${LABEL_VCS_URL}" \
|
|
org.opencontainers.image.revision=${LABEL_VCS_REF} \
|
|
org.opencontainers.image.revision=${LABEL_VCS_REF} \
|
|
org.opencontainers.image.source=${LABEL_VCS_URL} \
|
|
org.opencontainers.image.source=${LABEL_VCS_URL} \
|