reorder db backends in build script

This commit is contained in:
or-else
2023-04-12 17:10:54 -04:00
parent 305933fa18
commit a5076b61f2

View File

@ -30,7 +30,7 @@ if [ `uname -m` != 'x86_64' ]; then
buildcmd='buildx build --platform=linux/amd64'
fi
dbtags=( mysql mongodb rethinkdb postgres alldbs )
dbtags=( mysql postgres mongodb rethinkdb alldbs )
# Build an images for various DB backends
for dbtag in "${dbtags[@]}"