mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-23 14:13:27 +01:00
Deprecate docker hub builds
This commit is contained in:
parent
e0c2678233
commit
d5d0754606
|
@ -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)
|
||||||
|
|
||||||
|
|
|
@ -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}"
|
||||||
]
|
]
|
||||||
])
|
])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user