summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Gabaldon <igabaldon@inetol.net>2026-07-03 16:10:04 +0200
committerGitHub <noreply@github.com>2026-07-03 16:10:04 +0200
commit747cec4c2304fc2e06ceb4a46dbe25bfb769db1e (patch)
tree0a0e7ec13da530e6ca258b41ed0ba137519bb6b8
parent4ef70e945142f2dea7a36c6952d781164e5cac36 (diff)
[mod] container: `docker.io` base source (#6344)
-rw-r--r--container/builder.dockerfile2
-rw-r--r--container/dist.dockerfile2
-rw-r--r--docs/admin/installation-docker.rst12
3 files changed, 8 insertions, 8 deletions
diff --git a/container/builder.dockerfile b/container/builder.dockerfile
index 43eb50895..7b92869d5 100644
--- a/container/builder.dockerfile
+++ b/container/builder.dockerfile
@@ -1,4 +1,4 @@
-FROM ghcr.io/searxng/base:searxng-builder AS builder
+FROM docker.io/searxng/base:searxng-builder AS builder
COPY ./requirements.txt ./requirements-server.txt ./
diff --git a/container/dist.dockerfile b/container/dist.dockerfile
index b8af66f35..3d23ab7db 100644
--- a/container/dist.dockerfile
+++ b/container/dist.dockerfile
@@ -2,7 +2,7 @@ ARG CONTAINER_IMAGE_ORGANIZATION="searxng"
ARG CONTAINER_IMAGE_NAME="searxng"
FROM localhost/$CONTAINER_IMAGE_ORGANIZATION/$CONTAINER_IMAGE_NAME:builder AS builder
-FROM ghcr.io/searxng/base:searxng AS dist
+FROM docker.io/searxng/base:searxng AS dist
COPY --chown=977:977 --from=builder /usr/local/searxng/.venv/ ./.venv/
COPY --chown=977:977 --from=builder /usr/local/searxng/searx/ ./searx/
diff --git a/docs/admin/installation-docker.rst b/docs/admin/installation-docker.rst
index 16c30249e..8ffd512bc 100644
--- a/docs/admin/installation-docker.rst
+++ b/docs/admin/installation-docker.rst
@@ -283,12 +283,12 @@ container images are not officially supported):
$ make container
$ docker images
- REPOSITORY TAG IMAGE ID CREATED SIZE
- localhost/searxng/searxng 2025.8.1-3d96414 ... About a minute ago 183 MB
- localhost/searxng/searxng latest ... About a minute ago 183 MB
- localhost/searxng/searxng builder ... About a minute ago 524 MB
- ghcr.io/searxng/base searxng-builder ... 2 days ago 378 MB
- ghcr.io/searxng/base searxng ... 2 days ago 42.2 MB
+ REPOSITORY TAG IMAGE ID SIZE
+ localhost/searxng/searxng 2026.6.19-93f66bfb4 ... 265 MB
+ localhost/searxng/searxng latest ... 265 MB
+ localhost/searxng/searxng builder ... 687 MB
+ docker.io/searxng/base searxng-builder ... 565 MB
+ docker.io/searxng/base searxng ... 143 MB
Migrate from ``searxng-docker``
===============================