You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perhaps a limit of 10 and you could do something like:
for i in $(seq 0 10);
do
tmp='POSTGRES_DB_'${i}
# And all other variables
# Array
arr=$(echo ${!tmp} | tr ";" "\n")
for x in $arr
do
# Do the postgres logic to create that Database
done
done
Is it possible to create multiple databases at startup?
docker-compose.yml
The text was updated successfully, but these errors were encountered: