diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2025-10-12 16:30:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-12 16:30:57 +0200 |
| commit | 5492de15bb7ae3e10fb6ba9393702e9b0a05c615 (patch) | |
| tree | 3a113b25511d24e1e04bbe28a9065fdc51ff2ca1 /container/base.yml | |
| parent | ced08e12aafc73a4e903e0cc0546729248b437b5 (diff) | |
[mod] container: move `base` to own repository (#5310)
The base images will be now built in
[another repository](https://github.com/searxng/base).
Diffstat (limited to 'container/base.yml')
| -rw-r--r-- | container/base.yml | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/container/base.yml b/container/base.yml deleted file mode 100644 index f78abab85..000000000 --- a/container/base.yml +++ /dev/null @@ -1,62 +0,0 @@ -contents: - repositories: - - https://dl-cdn.alpinelinux.org/alpine/edge/main - packages: - - alpine-baselayout - - ca-certificates - - ca-certificates-bundle - - musl-locales - - musl-locales-lang - - tzdata - - busybox - - python3 - - wget - -entrypoint: - command: /bin/sh -l - -work-dir: /usr/local/searxng/ - -accounts: - groups: - - groupname: searxng - gid: 977 - users: - - username: searxng - uid: 977 - shell: /bin/ash - -environment: - PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin - SSL_CERT_DIR: /etc/ssl/certs - SSL_CERT_FILE: /etc/ssl/certs/ca-certificates.crt - HISTFILE: /dev/null - CONFIG_PATH: /etc/searxng - DATA_PATH: /var/cache/searxng - -paths: - # Workdir - - path: /usr/local/searxng/ - type: directory - uid: 977 - gid: 977 - permissions: 0o555 - - # Config volume - - path: /etc/searxng/ - type: directory - uid: 977 - gid: 977 - permissions: 0o755 - - # Data volume - - path: /var/cache/searxng/ - type: directory - uid: 977 - gid: 977 - permissions: 0o755 - -archs: - - x86_64 - - aarch64 - - armv7 |