Remove dockerhub

This commit is contained in:
2025-03-01 23:44:32 +01:00
parent 0bfc6f469c
commit 77a6a1ae38
2 changed files with 4 additions and 7 deletions

View File

@@ -13,8 +13,7 @@ COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:3.1.2.1 ["/", "/"]
That's it! That's it!
Note: We're moving to ghcr.io. `docker.io/nlss/s6-rootfs` will be kept up-to-date until May 2023, when is Docker sunsetting free teams.<br/> Note: We have moved to ghcr.io. `docker.io/nlss/s6-rootfs` is discontinued.<br/>
It is highly recommended that you start using `ghcr.io/n0rthernl1ghts/s6-rootfs`.
###### Recommended way to integrate with your image (example) ###### Recommended way to integrate with your image (example)
```Docker ```Docker

View File

@@ -28,7 +28,7 @@ target "build-common" {
} }
variable "REGISTRY_CACHE" { variable "REGISTRY_CACHE" {
default = "docker.io/nlss/s6-rootfs-cache" default = "ghcr.io/n0rthernl1ghts/s6-rootfs-cache"
} }
###################### ######################
@@ -77,12 +77,10 @@ function "get-tags" {
params = [version, extra_versions] params = [version, extra_versions]
result = concat( result = concat(
[ [
"docker.io/nlss/s6-rootfs:${version}",
"ghcr.io/n0rthernl1ghts/s6-rootfs:${version}" "ghcr.io/n0rthernl1ghts/s6-rootfs:${version}"
], ],
flatten([ flatten([
for extra_version in extra_versions : [ for extra_version in extra_versions : [
"docker.io/nlss/s6-rootfs:${extra_version}",
"ghcr.io/n0rthernl1ghts/s6-rootfs:${extra_version}" "ghcr.io/n0rthernl1ghts/s6-rootfs:${extra_version}"
] ]
]) ])