mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
18 lines
236 B
Bash
18 lines
236 B
Bash
#!/bin/bash
|
|
|
|
images=($(yq eval '.services.*.image' docker-compose.dev.yml))
|
|
|
|
pull_image() {
|
|
docker pull "$1"
|
|
}
|
|
|
|
# install packages in background
|
|
pnpm i &
|
|
|
|
# pull images
|
|
for image in "${images[@]}"
|
|
do
|
|
pull_image "$image" &
|
|
done
|
|
|
|
wait |