move containers from .containers to containers

This commit is contained in:
kjeld Schouten-Lebbing
2021-05-30 13:02:07 +02:00
parent 15569974a0
commit c447b5b51f
99 changed files with 25 additions and 26 deletions
View File
+6
View File
@@ -0,0 +1,6 @@
ARG VERSION
FROM ghcr.io/k8s-at-home/alpine:v${VERSION}
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["echo", "'No can haz support yet. Chek bak l8r!'", "exit", "1337" ]
+1
View File
@@ -0,0 +1 @@
linux/amd64
+1
View File
@@ -0,0 +1 @@
3.13.5
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
TOKEN=$(curl https://ghcr.io/token\?scope\="repository:k8s-at-home/alpine:pull" | jq --raw-output '.[]')
version=$(curl -H "Authorization: Bearer ${TOKEN}" https://ghcr.io/v2/k8s-at-home/alpine/tags/list | jq --raw-output '.tags[]' | grep -v latest | grep -v buildcache | tail -n1)
version="${version#*v}"
version="${version#*release-}"
echo "${version}"