mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2025-12-14 02:02:41 +01:00
Add Docker tag latest
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
WP_VERSIONS=${1:-""}
|
||||
WP_LATEST_VERSION=${2:-""}
|
||||
|
||||
if [ -z "${WP_VERSIONS}" ]; then
|
||||
echo "Error: WP_VERSIONS is null"
|
||||
@@ -10,9 +11,12 @@ fi
|
||||
docker buildx create --use --name build --node build --driver-opt network=host
|
||||
|
||||
# Loop through requested versions
|
||||
for TARGET_VERSION in ${WP_VERSIONS}
|
||||
do
|
||||
for TARGET_VERSION in ${WP_VERSIONS}; do
|
||||
echo "> Building WordPress ${TARGET_VERSION}"
|
||||
|
||||
docker buildx build --pull --push --build-arg "WP_VERSION=${TARGET_VERSION}" --platform "linux/amd64,linux/armhf,linux/aarch64" --tag "nlss/wordpress:${TARGET_VERSION}" .
|
||||
done
|
||||
|
||||
if [ "${TARGET_VERSION}" == "${WP_LATEST_VERSION}"]; then
|
||||
docker buildx build --pull --push --build-arg "WP_VERSION=${TARGET_VERSION}" --platform "linux/amd64,linux/armhf,linux/aarch64" --tag "nlss/wordpress:latest" .
|
||||
fi
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user