mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 09:04:12 +02:00
11 lines
No EOL
219 B
Bash
Executable file
11 lines
No EOL
219 B
Bash
Executable file
#!/bin/bash
|
|
|
|
versions=("7.2" "7.3" "7.4" "8.0")
|
|
|
|
for version in "${versions[@]}"; do
|
|
docker push "icewind1991/haze-php:$version"
|
|
done
|
|
|
|
for version in "${versions[@]}"; do
|
|
docker push "icewind1991/haze:$version"
|
|
done |