feat: add docker remotes to artifactapi (#86)

- set artifactapi to specific version
- add dockerhub and ghcr to remotes

Reviewed-on: #86
This commit was merged in pull request #86.
This commit is contained in:
2026-04-25 17:40:35 +10:00
parent 3fc9cfa41a
commit 7535d655fe
2 changed files with 21 additions and 3 deletions
@@ -19,8 +19,8 @@ spec:
automountServiceAccountToken: true automountServiceAccountToken: true
containers: containers:
- name: artifactapi - name: artifactapi
image: git.unkin.net/unkin/almalinux9-artifactapi:latest image: git.unkin.net/unkin/almalinux9-artifactapi:2.1.1
imagePullPolicy: Always imagePullPolicy: IfNotPresent
ports: ports:
- containerPort: 8000 - containerPort: 8000
name: http name: http
+19 -1
View File
@@ -291,7 +291,7 @@ remotes:
- "claude-code-releases/.*/manifest.json$" - "claude-code-releases/.*/manifest.json$"
cache: cache:
file_ttl: 0 file_ttl: 0
index_ttl: 0 index_ttl: 300
local-generic: local-generic:
type: "local" type: "local"
@@ -300,3 +300,21 @@ remotes:
cache: cache:
file_ttl: 0 file_ttl: 0
index_ttl: 0 index_ttl: 0
ghcr:
base_url: "https://ghcr.io"
type: "docker"
package: "generic"
description: "GitHub Container Registry"
cache:
file_ttl: 0
index_ttl: 300
dockerhub:
base_url: "https://registry-1.docker.io"
type: "docker"
package: "generic"
description: "Docker Hub registry"
cache:
file_ttl: 0
index_ttl: 300