Deprecate docker hub builds

This commit is contained in:
Aleksandar Puharic 2024-10-29 00:36:21 +01:00
parent e0c2678233
commit d5d0754606
Signed by: xZero707
GPG Key ID: 3CC53DCAA9C237BB
2 changed files with 5 additions and 3 deletions

View File

@ -40,6 +40,10 @@ Attempt to fix several of WordPress anti-patterns in ready to deploy container
* If you have custom scripts, you should review them and migrate to new format * If you have custom scripts, you should review them and migrate to new format
* S6 supervisor v3 brings many improvements and bugfixes in addition to performance improvements * S6 supervisor v3 brings many improvements and bugfixes in addition to performance improvements
* This change is necessary to ensure compatibility with future base image updates * This change is necessary to ensure compatibility with future base image updates
- 2024-10-28 Deprecate docker hub images
* Done as protest against Docker Hub's hostile behavior towards open source community
* All images will be removed from docker hub
* Please use ghcr.io/n0rthernl1ghts/wordpress instead
#### Public builds (docker) #### Public builds (docker)

View File

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