mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-29 18:00:26 -06:00
* Initialized Gitpod tested scripts * ignored ports 1025 and 8025 * added website dev environment * removed api and error tasks and prioritized web task to be shown first
18 lines
250 B
Bash
18 lines
250 B
Bash
#!/bin/bash
|
|
|
|
images=($(yq eval '.services.*.image' packages/database/docker-compose.yml))
|
|
|
|
pull_image() {
|
|
docker pull "$1"
|
|
}
|
|
|
|
# install packages in background
|
|
pnpm i &
|
|
|
|
# pull images
|
|
for image in "${images[@]}"
|
|
do
|
|
pull_image "$image" &
|
|
done
|
|
|
|
wait |