diff --git a/README.md b/README.md index c217d66..4e3a943 100644 --- a/README.md +++ b/README.md @@ -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 * 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 +- 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) diff --git a/build/docker-bake.hcl b/build/docker-bake.hcl index ad600f9..a953f6c 100644 --- a/build/docker-bake.hcl +++ b/build/docker-bake.hcl @@ -29,7 +29,7 @@ target "build-common" { } 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] result = concat( [ - "docker.io/nlss/wordpress:${version}", "ghcr.io/n0rthernl1ghts/wordpress:${version}" ], flatten([ for extra_version in extra_versions : [ - "docker.io/nlss/wordpress:${extra_version}", "ghcr.io/n0rthernl1ghts/wordpress:${extra_version}" ] ])