mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2025-12-08 14:02:41 +01:00
14 lines
398 B
Bash
Executable File
14 lines
398 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
main() {
|
|
echo "Warning: This is resource-intensive and might crash your system if you don't have enough resources !!!"
|
|
echo "Press Ctrl+C to cancel. Automatically continuing in 5 seconds..."
|
|
sleep 5
|
|
|
|
docker buildx bake --file build/docker-bake.hcl --pull "${@}" &
|
|
docker buildx bake --file build/docker-bake-cron.hcl --pull "${@}" &
|
|
wait
|
|
}
|
|
|
|
main "${@}"
|